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

Side by Side Diff: PRESUBMIT.py

Issue 452313003: Fix typo from r288440 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 months 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 | Annotate | Revision Log
« 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 903 matching lines...) Expand 10 before | Expand all | Expand 10 after
914 _TEST_CODE_EXCLUDED_PATHS + 914 _TEST_CODE_EXCLUDED_PATHS +
915 input_api.DEFAULT_BLACK_LIST + 915 input_api.DEFAULT_BLACK_LIST +
916 (r"^base[\\\/]logging\.h$", 916 (r"^base[\\\/]logging\.h$",
917 r"^base[\\\/]logging\.cc$", 917 r"^base[\\\/]logging\.cc$",
918 r"^chrome[\\\/]app[\\\/]chrome_main_delegate\.cc$", 918 r"^chrome[\\\/]app[\\\/]chrome_main_delegate\.cc$",
919 r"^chrome[\\\/]browser[\\\/]chrome_browser_main\.cc$", 919 r"^chrome[\\\/]browser[\\\/]chrome_browser_main\.cc$",
920 r"^chrome[\\\/]browser[\\\/]ui[\\\/]startup[\\\/]" 920 r"^chrome[\\\/]browser[\\\/]ui[\\\/]startup[\\\/]"
921 r"startup_browser_creator\.cc$", 921 r"startup_browser_creator\.cc$",
922 r"^chrome[\\\/]installer[\\\/]setup[\\\/].*", 922 r"^chrome[\\\/]installer[\\\/]setup[\\\/].*",
923 r"chrome[\\\/]browser[\\\/]diagnostics[\\\/]" + 923 r"chrome[\\\/]browser[\\\/]diagnostics[\\\/]" +
924 r"diagnostics_writer.cc" 924 r"diagnostics_writer\.cc$",
925 r"^chrome_elf[\\\/]dll_hash[\\\/]dll_hash_main\.cc$", 925 r"^chrome_elf[\\\/]dll_hash[\\\/]dll_hash_main\.cc$",
926 r"^chromecast[\\\/]", 926 r"^chromecast[\\\/]",
927 r"^cloud_print[\\\/]", 927 r"^cloud_print[\\\/]",
928 r"^content[\\\/]common[\\\/]gpu[\\\/]client[\\\/]" 928 r"^content[\\\/]common[\\\/]gpu[\\\/]client[\\\/]"
929 r"gl_helper_benchmark\.cc$", 929 r"gl_helper_benchmark\.cc$",
930 r"^extensions[\\\/]renderer[\\\/]logging_native_handler\.cc$", 930 r"^extensions[\\\/]renderer[\\\/]logging_native_handler\.cc$",
931 r"^native_client_sdk[\\\/]", 931 r"^native_client_sdk[\\\/]",
932 r"^remoting[\\\/]base[\\\/]logging\.h$", 932 r"^remoting[\\\/]base[\\\/]logging\.h$",
933 r"^remoting[\\\/]host[\\\/].*", 933 r"^remoting[\\\/]host[\\\/].*",
934 r"^sandbox[\\\/]linux[\\\/].*", 934 r"^sandbox[\\\/]linux[\\\/].*",
(...skipping 689 matching lines...) Expand 10 before | Expand all | Expand 10 after
1624 builders.extend(['cros_x86']) 1624 builders.extend(['cros_x86'])
1625 1625
1626 # The AOSP bot doesn't build the chrome/ layer, so ignore any changes to it 1626 # The AOSP bot doesn't build the chrome/ layer, so ignore any changes to it
1627 # unless they're .gyp(i) files as changes to those files can break the gyp 1627 # unless they're .gyp(i) files as changes to those files can break the gyp
1628 # step on that bot. 1628 # step on that bot.
1629 if (not all(re.search('^chrome', f) for f in files) or 1629 if (not all(re.search('^chrome', f) for f in files) or
1630 any(re.search('\.gypi?$', f) for f in files)): 1630 any(re.search('\.gypi?$', f) for f in files)):
1631 builders.extend(['android_aosp']) 1631 builders.extend(['android_aosp'])
1632 1632
1633 return GetDefaultTryConfigs(builders) 1633 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