| 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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 "customization_document_browsertest\.cc$", | 172 "customization_document_browsertest\.cc$", |
| 173 r"^components[\\\/]crash[\\\/]app[\\\/]breakpad_mac\.mm$", | 173 r"^components[\\\/]crash[\\\/]app[\\\/]breakpad_mac\.mm$", |
| 174 r"^content[\\\/]shell[\\\/]browser[\\\/]shell_browser_main\.cc$", | 174 r"^content[\\\/]shell[\\\/]browser[\\\/]shell_browser_main\.cc$", |
| 175 r"^content[\\\/]shell[\\\/]browser[\\\/]shell_message_filter\.cc$", | 175 r"^content[\\\/]shell[\\\/]browser[\\\/]shell_message_filter\.cc$", |
| 176 r"^mojo[\\\/]edk[\\\/]embedder[\\\/]" + | 176 r"^mojo[\\\/]edk[\\\/]embedder[\\\/]" + |
| 177 r"simple_platform_shared_buffer_posix\.cc$", | 177 r"simple_platform_shared_buffer_posix\.cc$", |
| 178 r"^net[\\\/]disk_cache[\\\/]cache_util\.cc$", | 178 r"^net[\\\/]disk_cache[\\\/]cache_util\.cc$", |
| 179 r"^net[\\\/]url_request[\\\/]test_url_fetcher_factory\.cc$", | 179 r"^net[\\\/]url_request[\\\/]test_url_fetcher_factory\.cc$", |
| 180 r"^remoting[\\\/]host[\\\/]gnubby_auth_handler_posix\.cc$", | 180 r"^remoting[\\\/]host[\\\/]gnubby_auth_handler_posix\.cc$", |
| 181 r"^ui[\\\/]ozone[\\\/]platform[\\\/]drm[\\\/]host[\\\/]" | 181 r"^ui[\\\/]ozone[\\\/]platform[\\\/]drm[\\\/]host[\\\/]" |
| 182 "drm_display_host_manager_core\.cc$", | 182 "drm_display_host_manager\.cc$", |
| 183 ), | 183 ), |
| 184 ), | 184 ), |
| 185 ( | 185 ( |
| 186 'SkRefPtr', | 186 'SkRefPtr', |
| 187 ( | 187 ( |
| 188 'The use of SkRefPtr is prohibited. ', | 188 'The use of SkRefPtr is prohibited. ', |
| 189 'Please use skia::RefPtr instead.' | 189 'Please use skia::RefPtr instead.' |
| 190 ), | 190 ), |
| 191 True, | 191 True, |
| 192 (), | 192 (), |
| (...skipping 1756 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1949 results.extend(input_api.canned_checks.CheckTreeIsOpen( | 1949 results.extend(input_api.canned_checks.CheckTreeIsOpen( |
| 1950 input_api, | 1950 input_api, |
| 1951 output_api, | 1951 output_api, |
| 1952 json_url='http://chromium-status.appspot.com/current?format=json')) | 1952 json_url='http://chromium-status.appspot.com/current?format=json')) |
| 1953 | 1953 |
| 1954 results.extend(input_api.canned_checks.CheckChangeHasBugField( | 1954 results.extend(input_api.canned_checks.CheckChangeHasBugField( |
| 1955 input_api, output_api)) | 1955 input_api, output_api)) |
| 1956 results.extend(input_api.canned_checks.CheckChangeHasDescription( | 1956 results.extend(input_api.canned_checks.CheckChangeHasDescription( |
| 1957 input_api, output_api)) | 1957 input_api, output_api)) |
| 1958 return results | 1958 return results |
| OLD | NEW |