Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Side by Side Diff: PRESUBMIT.py

Issue 662703003: Excluded ipc/ipc_logging.cc to check for spam logging (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """Top-level presubmit script for Chromium. 5 """Top-level presubmit script for Chromium.
6 6
7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts 7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts
8 for more details about the presubmit API built into gcl. 8 for more details about the presubmit API built into gcl.
9 """ 9 """
10 10
(...skipping 935 matching lines...) Expand 10 before | Expand all | Expand 10 after
946 r"^chrome[\\\/]installer[\\\/]setup[\\\/].*", 946 r"^chrome[\\\/]installer[\\\/]setup[\\\/].*",
947 r"chrome[\\\/]browser[\\\/]diagnostics[\\\/]" + 947 r"chrome[\\\/]browser[\\\/]diagnostics[\\\/]" +
948 r"diagnostics_writer\.cc$", 948 r"diagnostics_writer\.cc$",
949 r"^chrome_elf[\\\/]dll_hash[\\\/]dll_hash_main\.cc$", 949 r"^chrome_elf[\\\/]dll_hash[\\\/]dll_hash_main\.cc$",
950 r"^chromecast[\\\/]", 950 r"^chromecast[\\\/]",
951 r"^cloud_print[\\\/]", 951 r"^cloud_print[\\\/]",
952 r"^content[\\\/]common[\\\/]gpu[\\\/]client[\\\/]" 952 r"^content[\\\/]common[\\\/]gpu[\\\/]client[\\\/]"
953 r"gl_helper_benchmark\.cc$", 953 r"gl_helper_benchmark\.cc$",
954 r"^courgette[\\\/]courgette_tool\.cc$", 954 r"^courgette[\\\/]courgette_tool\.cc$",
955 r"^extensions[\\\/]renderer[\\\/]logging_native_handler\.cc$", 955 r"^extensions[\\\/]renderer[\\\/]logging_native_handler\.cc$",
956 r"^ipc[\\\/]ipc_logging\.cc$",
956 r"^native_client_sdk[\\\/]", 957 r"^native_client_sdk[\\\/]",
957 r"^remoting[\\\/]base[\\\/]logging\.h$", 958 r"^remoting[\\\/]base[\\\/]logging\.h$",
958 r"^remoting[\\\/]host[\\\/].*", 959 r"^remoting[\\\/]host[\\\/].*",
959 r"^sandbox[\\\/]linux[\\\/].*", 960 r"^sandbox[\\\/]linux[\\\/].*",
960 r"^tools[\\\/]", 961 r"^tools[\\\/]",
961 r"^ui[\\\/]aura[\\\/]bench[\\\/]bench_main\.cc$", 962 r"^ui[\\\/]aura[\\\/]bench[\\\/]bench_main\.cc$",
962 r"^webkit[\\\/]browser[\\\/]fileapi[\\\/]" + 963 r"^webkit[\\\/]browser[\\\/]fileapi[\\\/]" +
963 r"dump_file_system.cc$",)) 964 r"dump_file_system.cc$",))
964 source_file_filter = lambda x: input_api.FilterSourceFile( 965 source_file_filter = lambda x: input_api.FilterSourceFile(
965 x, white_list=(file_inclusion_pattern,), black_list=black_list) 966 x, white_list=(file_inclusion_pattern,), black_list=black_list)
(...skipping 733 matching lines...) Expand 10 before | Expand all | Expand 10 after
1699 builders.extend(['cros_x86']) 1700 builders.extend(['cros_x86'])
1700 1701
1701 # The AOSP bot doesn't build the chrome/ layer, so ignore any changes to it 1702 # The AOSP bot doesn't build the chrome/ layer, so ignore any changes to it
1702 # unless they're .gyp(i) files as changes to those files can break the gyp 1703 # unless they're .gyp(i) files as changes to those files can break the gyp
1703 # step on that bot. 1704 # step on that bot.
1704 if (not all(re.search('^chrome', f) for f in files) or 1705 if (not all(re.search('^chrome', f) for f in files) or
1705 any(re.search('\.gypi?$', f) for f in files)): 1706 any(re.search('\.gypi?$', f) for f in files)):
1706 builders.extend(['android_aosp']) 1707 builders.extend(['android_aosp'])
1707 1708
1708 return GetDefaultTryConfigs(builders) 1709 return GetDefaultTryConfigs(builders)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698