Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(124)

Side by Side Diff: PRESUBMIT.py

Issue 2901113003: Fix breakages while performance_browser_tests was not running on Mac. (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/test/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
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"^components[\\\/]crash[\\\/]app[\\\/]breakpad_mac\.mm$", 207 r"^components[\\\/]crash[\\\/]app[\\\/]breakpad_mac\.mm$",
208 r"^content[\\\/]shell[\\\/]browser[\\\/]layout_test[\\\/]" + 208 r"^content[\\\/]shell[\\\/]browser[\\\/]layout_test[\\\/]" +
209 r"test_info_extractor\.cc$", 209 r"test_info_extractor\.cc$",
210 r"^content[\\\/].*browser(|_)test[a-zA-Z_]*\.cc$", 210 r"^content[\\\/].*browser(|_)test[a-zA-Z_]*\.cc$",
211 r"^content[\\\/]shell[\\\/]browser[\\\/]shell_browser_main\.cc$", 211 r"^content[\\\/]shell[\\\/]browser[\\\/]shell_browser_main\.cc$",
212 r"^content[\\\/]shell[\\\/]browser[\\\/]shell_message_filter\.cc$", 212 r"^content[\\\/]shell[\\\/]browser[\\\/]shell_message_filter\.cc$",
213 r"^content[\\\/]test[\\\/]ppapi[\\\/]ppapi_test\.cc$", 213 r"^content[\\\/]test[\\\/]ppapi[\\\/]ppapi_test\.cc$",
214 r"^media[\\\/]cast[\\\/]test[\\\/]utility[\\\/]" +
215 r"standalone_cast_environment\.cc$",
214 r"^mojo[\\\/]edk[\\\/]embedder[\\\/]" + 216 r"^mojo[\\\/]edk[\\\/]embedder[\\\/]" +
215 r"simple_platform_shared_buffer_posix\.cc$", 217 r"simple_platform_shared_buffer_posix\.cc$",
216 r"^net[\\\/]disk_cache[\\\/]cache_util\.cc$", 218 r"^net[\\\/]disk_cache[\\\/]cache_util\.cc$",
217 r"^net[\\\/]cert[\\\/]test_root_certs\.cc$", 219 r"^net[\\\/]cert[\\\/]test_root_certs\.cc$",
218 r"^net[\\\/]test[\\\/]embedded_test_server[\\\/]" + 220 r"^net[\\\/]test[\\\/]embedded_test_server[\\\/]" +
219 r"embedded_test_server\.cc$", 221 r"embedded_test_server\.cc$",
220 r"^net[\\\/]test[\\\/]spawned_test_server[\\\/]local_test_server\.cc$", 222 r"^net[\\\/]test[\\\/]spawned_test_server[\\\/]local_test_server\.cc$",
221 r"^net[\\\/]test[\\\/]test_data_directory\.cc$", 223 r"^net[\\\/]test[\\\/]test_data_directory\.cc$",
222 r"^net[\\\/]url_request[\\\/]test_url_fetcher_factory\.cc$", 224 r"^net[\\\/]url_request[\\\/]test_url_fetcher_factory\.cc$",
223 r"^remoting[\\\/]protocol[\\\/]webrtc_transport\.cc$", 225 r"^remoting[\\\/]protocol[\\\/]webrtc_transport\.cc$",
(...skipping 2246 matching lines...) Expand 10 before | Expand all | Expand 10 after
2470 output_api, 2472 output_api,
2471 json_url='http://chromium-status.appspot.com/current?format=json')) 2473 json_url='http://chromium-status.appspot.com/current?format=json'))
2472 2474
2473 results.extend( 2475 results.extend(
2474 input_api.canned_checks.CheckPatchFormatted(input_api, output_api)) 2476 input_api.canned_checks.CheckPatchFormatted(input_api, output_api))
2475 results.extend(input_api.canned_checks.CheckChangeHasBugField( 2477 results.extend(input_api.canned_checks.CheckChangeHasBugField(
2476 input_api, output_api)) 2478 input_api, output_api))
2477 results.extend(input_api.canned_checks.CheckChangeHasDescription( 2479 results.extend(input_api.canned_checks.CheckChangeHasDescription(
2478 input_api, output_api)) 2480 input_api, output_api))
2479 return results 2481 return results
OLDNEW
« no previous file with comments | « no previous file | chrome/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698