diff options
author | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-11 18:38:13 +0000 |
---|---|---|
committer | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-11 18:38:13 +0000 |
commit | 0b7a21e5632520bf225e7778ce0115d3d0ef26fb (patch) | |
tree | d1489c96a9c9d2681cf21b82e2b2ed9a0cf9b3a4 /PRESUBMIT.py | |
parent | 3ae54ce53ddf4801fb78cfb768445ca3dcdd44a8 (diff) | |
download | chromium_src-0b7a21e5632520bf225e7778ce0115d3d0ef26fb.zip chromium_src-0b7a21e5632520bf225e7778ce0115d3d0ef26fb.tar.gz chromium_src-0b7a21e5632520bf225e7778ce0115d3d0ef26fb.tar.bz2 |
Exclude tools/ from console spam PRESUBMIT
tools/ are often standalone or intended to interact with console output.
R=maruel@chromium.org
Review URL: https://codereview.chromium.org/130263011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250455 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'PRESUBMIT.py')
-rw-r--r-- | PRESUBMIT.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/PRESUBMIT.py b/PRESUBMIT.py index 349910a..5d9183a 100644 --- a/PRESUBMIT.py +++ b/PRESUBMIT.py @@ -904,8 +904,7 @@ def _CheckSpamLogging(input_api, output_api): r"^remoting[\\\/]base[\\\/]logging\.h$", r"^remoting[\\\/]host[\\\/].*", r"^sandbox[\\\/]linux[\\\/].*", - r"^tools[\\\/]telemetry[\\\/]telemetry[\\\/]core[\\\/]" - r"bitmaptools.cc$", + r"^tools[\\\/]", r"^ui[\\\/]aura[\\\/]bench[\\\/]bench_main\.cc$",)) source_file_filter = lambda x: input_api.FilterSourceFile( x, white_list=(file_inclusion_pattern,), black_list=black_list) |