| 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 r"^components[\\\/]crash[\\\/]app[\\\/]breakpad_mac\.mm$", | 179 r"^components[\\\/]crash[\\\/]app[\\\/]breakpad_mac\.mm$", |
| 180 r"^content[\\\/]shell[\\\/]browser[\\\/]layout_test[\\\/]" + | 180 r"^content[\\\/]shell[\\\/]browser[\\\/]layout_test[\\\/]" + |
| 181 r"test_info_extractor\.cc$", | 181 r"test_info_extractor\.cc$", |
| 182 r"^content[\\\/]shell[\\\/]browser[\\\/]shell_browser_main\.cc$", | 182 r"^content[\\\/]shell[\\\/]browser[\\\/]shell_browser_main\.cc$", |
| 183 r"^content[\\\/]shell[\\\/]browser[\\\/]shell_message_filter\.cc$", | 183 r"^content[\\\/]shell[\\\/]browser[\\\/]shell_message_filter\.cc$", |
| 184 r"^mojo[\\\/]edk[\\\/]embedder[\\\/]" + | 184 r"^mojo[\\\/]edk[\\\/]embedder[\\\/]" + |
| 185 r"simple_platform_shared_buffer_posix\.cc$", | 185 r"simple_platform_shared_buffer_posix\.cc$", |
| 186 r"^net[\\\/]disk_cache[\\\/]cache_util\.cc$", | 186 r"^net[\\\/]disk_cache[\\\/]cache_util\.cc$", |
| 187 r"^net[\\\/]url_request[\\\/]test_url_fetcher_factory\.cc$", | 187 r"^net[\\\/]url_request[\\\/]test_url_fetcher_factory\.cc$", |
| 188 r"^remoting[\\\/]host[\\\/]security_key[\\\/]" | 188 r"^remoting[\\\/]host[\\\/]security_key[\\\/]" |
| 189 "security_key_auth_handler_linux\.cc$", | 189 "gnubby_auth_handler_linux\.cc$", |
| 190 r"^ui[\\\/]base[\\\/]material_design[\\\/]" | 190 r"^ui[\\\/]base[\\\/]material_design[\\\/]" |
| 191 "material_design_controller\.cc$", | 191 "material_design_controller\.cc$", |
| 192 r"^ui[\\\/]gl[\\\/]init[\\\/]gl_initializer_mac\.cc$", | 192 r"^ui[\\\/]gl[\\\/]init[\\\/]gl_initializer_mac\.cc$", |
| 193 r"^ui[\\\/]gl[\\\/]init[\\\/]gl_initializer_win\.cc$", | 193 r"^ui[\\\/]gl[\\\/]init[\\\/]gl_initializer_win\.cc$", |
| 194 r"^ui[\\\/]gl[\\\/]init[\\\/]gl_initializer_x11\.cc$", | 194 r"^ui[\\\/]gl[\\\/]init[\\\/]gl_initializer_x11\.cc$", |
| 195 r"^ui[\\\/]ozone[\\\/]platform[\\\/]drm[\\\/]host[\\\/]" | 195 r"^ui[\\\/]ozone[\\\/]platform[\\\/]drm[\\\/]host[\\\/]" |
| 196 "drm_display_host_manager\.cc$", | 196 "drm_display_host_manager\.cc$", |
| 197 ), | 197 ), |
| 198 ), | 198 ), |
| 199 ( | 199 ( |
| (...skipping 2020 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2220 results.extend(input_api.canned_checks.CheckTreeIsOpen( | 2220 results.extend(input_api.canned_checks.CheckTreeIsOpen( |
| 2221 input_api, | 2221 input_api, |
| 2222 output_api, | 2222 output_api, |
| 2223 json_url='http://chromium-status.appspot.com/current?format=json')) | 2223 json_url='http://chromium-status.appspot.com/current?format=json')) |
| 2224 | 2224 |
| 2225 results.extend(input_api.canned_checks.CheckChangeHasBugField( | 2225 results.extend(input_api.canned_checks.CheckChangeHasBugField( |
| 2226 input_api, output_api)) | 2226 input_api, output_api)) |
| 2227 results.extend(input_api.canned_checks.CheckChangeHasDescription( | 2227 results.extend(input_api.canned_checks.CheckChangeHasDescription( |
| 2228 input_api, output_api)) | 2228 input_api, output_api)) |
| 2229 return results | 2229 return results |
| OLD | NEW |