| OLD | NEW |
| 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 depot_tools. | 8 for more details about the presubmit API built into depot_tools. |
| 9 """ | 9 """ |
| 10 | 10 |
| 11 | 11 |
| 12 _EXCLUDED_PATHS = ( | 12 _EXCLUDED_PATHS = ( |
| 13 r"^breakpad[\\\/].*", | 13 r"^breakpad[\\\/].*", |
| 14 r"^native_client_sdk[\\\/]src[\\\/]build_tools[\\\/]make_rules.py", | 14 r"^native_client_sdk[\\\/]src[\\\/]build_tools[\\\/]make_rules.py", |
| 15 r"^native_client_sdk[\\\/]src[\\\/]build_tools[\\\/]make_simple.py", | 15 r"^native_client_sdk[\\\/]src[\\\/]build_tools[\\\/]make_simple.py", |
| 16 r"^native_client_sdk[\\\/]src[\\\/]tools[\\\/].*.mk", | 16 r"^native_client_sdk[\\\/]src[\\\/]tools[\\\/].*.mk", |
| 17 r"^net[\\\/]tools[\\\/]spdyshark[\\\/].*", | 17 r"^net[\\\/]tools[\\\/]spdyshark[\\\/].*", |
| 18 r"^skia[\\\/].*", | 18 r"^skia[\\\/].*", |
| 19 r"^third_party[\\\/]WebKit[\\\/].*", | 19 r"^third_party[\\\/]WebKit[\\\/].*", |
| 20 r"^v8[\\\/].*", | 20 r"^v8[\\\/].*", |
| 21 r".*MakeFile$", | 21 r".*MakeFile$", |
| 22 r".+_autogen\.h$", | 22 r".+_autogen\.h$", |
| 23 r".+[\\\/]pnacl_shim\.c$", | 23 r".+[\\\/]pnacl_shim\.c$", |
| 24 r"^gpu[\\\/]config[\\\/].*_list_json\.cc$", | 24 r"^gpu[\\\/]config[\\\/].*_list_json\.cc$", |
| 25 r"^chrome[\\\/]browser[\\\/]resources[\\\/]pdf[\\\/]index.js", | 25 r"^chrome[\\\/]browser[\\\/]resources[\\\/]pdf[\\\/]index.js", |
| 26 r".*vulcanized.html$", | 26 r".*vulcanized.html$", |
| 27 r".*crisper.js$", | 27 r".*crisper.js$", |
| 28 r"tools[\\\/]md_browser[\\\/].*\.css$", |
| 28 ) | 29 ) |
| 29 | 30 |
| 30 | 31 |
| 31 # Fragment of a regular expression that matches C++ and Objective-C++ | 32 # Fragment of a regular expression that matches C++ and Objective-C++ |
| 32 # implementation files. | 33 # implementation files. |
| 33 _IMPLEMENTATION_EXTENSIONS = r'\.(cc|cpp|cxx|mm)$' | 34 _IMPLEMENTATION_EXTENSIONS = r'\.(cc|cpp|cxx|mm)$' |
| 34 | 35 |
| 35 | 36 |
| 36 # Regular expression that matches code only used for test binaries | 37 # Regular expression that matches code only used for test binaries |
| 37 # (best effort). | 38 # (best effort). |
| (...skipping 2335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2373 output_api, | 2374 output_api, |
| 2374 json_url='http://chromium-status.appspot.com/current?format=json')) | 2375 json_url='http://chromium-status.appspot.com/current?format=json')) |
| 2375 | 2376 |
| 2376 results.extend( | 2377 results.extend( |
| 2377 input_api.canned_checks.CheckPatchFormatted(input_api, output_api)) | 2378 input_api.canned_checks.CheckPatchFormatted(input_api, output_api)) |
| 2378 results.extend(input_api.canned_checks.CheckChangeHasBugField( | 2379 results.extend(input_api.canned_checks.CheckChangeHasBugField( |
| 2379 input_api, output_api)) | 2380 input_api, output_api)) |
| 2380 results.extend(input_api.canned_checks.CheckChangeHasDescription( | 2381 results.extend(input_api.canned_checks.CheckChangeHasDescription( |
| 2381 input_api, output_api)) | 2382 input_api, output_api)) |
| 2382 return results | 2383 return results |
| OLD | NEW |