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

Side by Side Diff: PRESUBMIT.py

Issue 319873002: Update default try job set of bots in PRESUBMIT.py. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | 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) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 Blink. 5 """Top-level presubmit script for Blink.
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 gcl. 8 for more details about the presubmit API built into gcl.
9 """ 9 """
10 10
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 json_url='http://blink-status.appspot.com/current?format=json')) 325 json_url='http://blink-status.appspot.com/current?format=json'))
326 results.extend(input_api.canned_checks.CheckChangeHasDescription( 326 results.extend(input_api.canned_checks.CheckChangeHasDescription(
327 input_api, output_api)) 327 input_api, output_api))
328 results.extend(_CheckSubversionConfig(input_api, output_api)) 328 results.extend(_CheckSubversionConfig(input_api, output_api))
329 return results 329 return results
330 330
331 331
332 def GetPreferredTryMasters(project, change): 332 def GetPreferredTryMasters(project, change):
333 return { 333 return {
334 'tryserver.blink': { 334 'tryserver.blink': {
335 'android_blink_compile_dbg': set(['defaulttests']),
336 'android_blink_compile_rel': set(['defaulttests']),
337 'android_chromium_gn_compile_rel': set(['defaulttests']),
335 'linux_blink_dbg': set(['defaulttests']), 338 'linux_blink_dbg': set(['defaulttests']),
336 'linux_blink_rel': set(['defaulttests']), 339 'linux_blink_rel': set(['defaulttests']),
340 'linux_chromium_gn_rel': set(['defaulttests']),
337 'mac_blink_compile_dbg': set(['defaulttests']), 341 'mac_blink_compile_dbg': set(['defaulttests']),
338 'mac_blink_rel': set(['defaulttests']), 342 'mac_blink_rel': set(['defaulttests']),
339 'win_blink_compile_dbg': set(['defaulttests']), 343 'win_blink_compile_dbg': set(['defaulttests']),
340 'win_blink_rel': set(['defaulttests']), 344 'win_blink_rel': set(['defaulttests']),
341 }, 345 },
342 'tryserver.chromium': {
343 'blink_android_compile_dbg': set(['defaulttests']),
344 'blink_android_compile_rel': set(['defaulttests']),
345 },
346 'tryserver.chromium.gpu': { 346 'tryserver.chromium.gpu': {
347 'linux_gpu': set(['defaulttests']), 347 'linux_gpu': set(['defaulttests']),
348 'mac_gpu': set(['defaulttests']), 348 'mac_gpu': set(['defaulttests']),
349 'win_gpu': set(['defaulttests']), 349 'win_gpu': set(['defaulttests']),
350 } 350 }
351 } 351 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698