| 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 |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 True, | 197 True, |
| 198 ( | 198 ( |
| 199 r"^base[\\\/]memory[\\\/]shared_memory_posix\.cc$", | 199 r"^base[\\\/]memory[\\\/]shared_memory_posix\.cc$", |
| 200 r"^base[\\\/]process[\\\/]internal_aix\.cc$", | 200 r"^base[\\\/]process[\\\/]internal_aix\.cc$", |
| 201 r"^base[\\\/]process[\\\/]process_linux\.cc$", | 201 r"^base[\\\/]process[\\\/]process_linux\.cc$", |
| 202 r"^base[\\\/]process[\\\/]process_metrics_linux\.cc$", | 202 r"^base[\\\/]process[\\\/]process_metrics_linux\.cc$", |
| 203 r"^chrome[\\\/]browser[\\\/]chromeos[\\\/]boot_times_recorder\.cc$", | 203 r"^chrome[\\\/]browser[\\\/]chromeos[\\\/]boot_times_recorder\.cc$", |
| 204 r"^chrome[\\\/]browser[\\\/]lifetime[\\\/]application_lifetime\.cc$", | 204 r"^chrome[\\\/]browser[\\\/]lifetime[\\\/]application_lifetime\.cc$", |
| 205 r"^chrome[\\\/]browser[\\\/]chromeos[\\\/]" | 205 r"^chrome[\\\/]browser[\\\/]chromeos[\\\/]" |
| 206 "customization_document_browsertest\.cc$", | 206 "customization_document_browsertest\.cc$", |
| 207 r"^chrome[\\\/]test[\\\/]media_router[\\\/]" + |
| 208 r"media_router_integration_browsertest\.cc$", |
| 207 r"^chrome[\\\/]test[\\\/]ppapi[\\\/]ppapi_filechooser_browsertest\.cc$", | 209 r"^chrome[\\\/]test[\\\/]ppapi[\\\/]ppapi_filechooser_browsertest\.cc$", |
| 208 r"^components[\\\/]crash[\\\/]app[\\\/]breakpad_mac\.mm$", | 210 r"^components[\\\/]crash[\\\/]app[\\\/]breakpad_mac\.mm$", |
| 209 r"^content[\\\/]shell[\\\/]browser[\\\/]layout_test[\\\/]" + | 211 r"^content[\\\/]shell[\\\/]browser[\\\/]layout_test[\\\/]" + |
| 210 r"test_info_extractor\.cc$", | 212 r"test_info_extractor\.cc$", |
| 211 r"^content[\\\/].*browser(|_)test[a-zA-Z_]*\.cc$", | 213 r"^content[\\\/].*browser(|_)test[a-zA-Z_]*\.cc$", |
| 212 r"^content[\\\/]shell[\\\/]browser[\\\/]shell_browser_main\.cc$", | 214 r"^content[\\\/]shell[\\\/]browser[\\\/]shell_browser_main\.cc$", |
| 213 r"^content[\\\/]shell[\\\/]browser[\\\/]shell_message_filter\.cc$", | 215 r"^content[\\\/]shell[\\\/]browser[\\\/]shell_message_filter\.cc$", |
| 214 r"^content[\\\/]test[\\\/]ppapi[\\\/]ppapi_test\.cc$", | 216 r"^content[\\\/]test[\\\/]ppapi[\\\/]ppapi_test\.cc$", |
| 215 r"^mojo[\\\/]edk[\\\/]embedder[\\\/]" + | 217 r"^mojo[\\\/]edk[\\\/]embedder[\\\/]" + |
| 216 r"simple_platform_shared_buffer_posix\.cc$", | 218 r"simple_platform_shared_buffer_posix\.cc$", |
| (...skipping 2248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2465 output_api, | 2467 output_api, |
| 2466 json_url='http://chromium-status.appspot.com/current?format=json')) | 2468 json_url='http://chromium-status.appspot.com/current?format=json')) |
| 2467 | 2469 |
| 2468 results.extend( | 2470 results.extend( |
| 2469 input_api.canned_checks.CheckPatchFormatted(input_api, output_api)) | 2471 input_api.canned_checks.CheckPatchFormatted(input_api, output_api)) |
| 2470 results.extend(input_api.canned_checks.CheckChangeHasBugField( | 2472 results.extend(input_api.canned_checks.CheckChangeHasBugField( |
| 2471 input_api, output_api)) | 2473 input_api, output_api)) |
| 2472 results.extend(input_api.canned_checks.CheckChangeHasDescription( | 2474 results.extend(input_api.canned_checks.CheckChangeHasDescription( |
| 2473 input_api, output_api)) | 2475 input_api, output_api)) |
| 2474 return results | 2476 return results |
| OLD | NEW |