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

Side by Side Diff: tools/roll_deps.py

Issue 227913005: Add the chromium ninja builder to the list of trybots for a DEPS roll. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 6 years, 8 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 #!/usr/bin/python2 1 #!/usr/bin/python2
2 2
3 # Copyright 2014 Google Inc. 3 # Copyright 2014 Google Inc.
4 # 4 #
5 # Use of this source code is governed by a BSD-style license that can be 5 # Use of this source code is governed by a BSD-style license that can be
6 # found in the LICENSE file. 6 # found in the LICENSE file.
7 7
8 """Skia's Chromium DEPS roll script. 8 """Skia's Chromium DEPS roll script.
9 9
10 This script: 10 This script:
(...skipping 27 matching lines...) Expand all
38 38
39 DEFAULT_BOTS_LIST = [ 39 DEFAULT_BOTS_LIST = [
40 'android_clang_dbg', 40 'android_clang_dbg',
41 'android_dbg', 41 'android_dbg',
42 'android_rel', 42 'android_rel',
43 'cros_daisy', 43 'cros_daisy',
44 'linux', 44 'linux',
45 'linux_asan', 45 'linux_asan',
46 'linux_chromeos', 46 'linux_chromeos',
47 'linux_chromeos_asan', 47 'linux_chromeos_asan',
48 'linux_chromium_gn_dbg',
48 'linux_gpu', 49 'linux_gpu',
49 'linux_layout', 50 'linux_layout',
50 'linux_layout_rel', 51 'linux_layout_rel',
51 'mac', 52 'mac',
52 'mac_asan', 53 'mac_asan',
53 'mac_gpu', 54 'mac_gpu',
54 'mac_layout', 55 'mac_layout',
55 'mac_layout_rel', 56 'mac_layout_rel',
56 'win', 57 'win',
57 'win_gpu', 58 'win_gpu',
(...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after
533 if not git_utils.git_executable(): 534 if not git_utils.git_executable():
534 option_parser.error('Invalid git executable.') 535 option_parser.error('Invalid git executable.')
535 536
536 config = DepsRollConfig(options) 537 config = DepsRollConfig(options)
537 find_hash_and_roll_deps(config, options.revision, options.git_hash) 538 find_hash_and_roll_deps(config, options.revision, options.git_hash)
538 539
539 540
540 if __name__ == '__main__': 541 if __name__ == '__main__':
541 main(sys.argv[1:]) 542 main(sys.argv[1:])
542 543
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