| 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 1153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1164 r"^components[\\\/]html_viewer[\\\/]" | 1164 r"^components[\\\/]html_viewer[\\\/]" |
| 1165 r"web_test_delegate_impl\.cc$", | 1165 r"web_test_delegate_impl\.cc$", |
| 1166 # TODO(peter): Remove this exception. https://crbug.com/534537 | 1166 # TODO(peter): Remove this exception. https://crbug.com/534537 |
| 1167 r"^content[\\\/]browser[\\\/]notifications[\\\/]" | 1167 r"^content[\\\/]browser[\\\/]notifications[\\\/]" |
| 1168 r"notification_event_dispatcher_impl\.cc$", | 1168 r"notification_event_dispatcher_impl\.cc$", |
| 1169 r"^content[\\\/]common[\\\/]gpu[\\\/]client[\\\/]" | 1169 r"^content[\\\/]common[\\\/]gpu[\\\/]client[\\\/]" |
| 1170 r"gl_helper_benchmark\.cc$", | 1170 r"gl_helper_benchmark\.cc$", |
| 1171 r"^courgette[\\\/]courgette_minimal_tool\.cc$", | 1171 r"^courgette[\\\/]courgette_minimal_tool\.cc$", |
| 1172 r"^courgette[\\\/]courgette_tool\.cc$", | 1172 r"^courgette[\\\/]courgette_tool\.cc$", |
| 1173 r"^extensions[\\\/]renderer[\\\/]logging_native_handler\.cc$", | 1173 r"^extensions[\\\/]renderer[\\\/]logging_native_handler\.cc$", |
| 1174 r"^ios[\\\/]web[\\\/]webui[\\\/]mojo_facade\.mm$", |
| 1174 r"^ipc[\\\/]ipc_logging\.cc$", | 1175 r"^ipc[\\\/]ipc_logging\.cc$", |
| 1175 r"^native_client_sdk[\\\/]", | 1176 r"^native_client_sdk[\\\/]", |
| 1176 r"^remoting[\\\/]base[\\\/]logging\.h$", | 1177 r"^remoting[\\\/]base[\\\/]logging\.h$", |
| 1177 r"^remoting[\\\/]host[\\\/].*", | 1178 r"^remoting[\\\/]host[\\\/].*", |
| 1178 r"^sandbox[\\\/]linux[\\\/].*", | 1179 r"^sandbox[\\\/]linux[\\\/].*", |
| 1179 r"^tools[\\\/]", | 1180 r"^tools[\\\/]", |
| 1180 r"^ui[\\\/]aura[\\\/]bench[\\\/]bench_main\.cc$", | 1181 r"^ui[\\\/]aura[\\\/]bench[\\\/]bench_main\.cc$", |
| 1181 r"^ui[\\\/]ozone[\\\/]platform[\\\/]cast[\\\/]", | 1182 r"^ui[\\\/]ozone[\\\/]platform[\\\/]cast[\\\/]", |
| 1182 r"^storage[\\\/]browser[\\\/]fileapi[\\\/]" + | 1183 r"^storage[\\\/]browser[\\\/]fileapi[\\\/]" + |
| 1183 r"dump_file_system.cc$", | 1184 r"dump_file_system.cc$", |
| (...skipping 1159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2343 results.extend(input_api.canned_checks.CheckTreeIsOpen( | 2344 results.extend(input_api.canned_checks.CheckTreeIsOpen( |
| 2344 input_api, | 2345 input_api, |
| 2345 output_api, | 2346 output_api, |
| 2346 json_url='http://chromium-status.appspot.com/current?format=json')) | 2347 json_url='http://chromium-status.appspot.com/current?format=json')) |
| 2347 | 2348 |
| 2348 results.extend(input_api.canned_checks.CheckChangeHasBugField( | 2349 results.extend(input_api.canned_checks.CheckChangeHasBugField( |
| 2349 input_api, output_api)) | 2350 input_api, output_api)) |
| 2350 results.extend(input_api.canned_checks.CheckChangeHasDescription( | 2351 results.extend(input_api.canned_checks.CheckChangeHasDescription( |
| 2351 input_api, output_api)) | 2352 input_api, output_api)) |
| 2352 return results | 2353 return results |
| OLD | NEW |