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

Side by Side Diff: tools/roll_deps.py

Issue 812963003: Remove obsolete mac_gpu (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: Created 6 years 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 | trybots_to_run/chrome/depsroll » ('j') | 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 'linux', 45 'linux',
46 'linux_asan', 46 'linux_asan',
47 'linux_chromeos', 47 'linux_chromeos',
48 'linux_chromeos_asan', 48 'linux_chromeos_asan',
49 'linux_chromium_gn_dbg', 49 'linux_chromium_gn_dbg',
50 'linux_gpu', 50 'linux_gpu',
51 'linux_layout', 51 'linux_layout',
52 'linux_layout_rel', 52 'linux_layout_rel',
53 'mac', 53 'mac',
54 'mac_asan', 54 'mac_asan',
55 'mac_gpu',
56 'mac_layout', 55 'mac_layout',
57 'mac_layout_rel', 56 'mac_layout_rel',
58 'win', 57 'win',
59 'win_gpu', 58 'win_gpu',
60 'win_layout', 59 'win_layout',
61 'win_layout_rel', 60 'win_layout_rel',
62 ] 61 ]
63 62
64 REGEXP_SKIA_REVISION = ( 63 REGEXP_SKIA_REVISION = (
65 r'^ "skia_revision": "(?P<revision>[0-9a-fA-F]{2,40})",$') 64 r'^ "skia_revision": "(?P<revision>[0-9a-fA-F]{2,40})",$')
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 288
290 if deps_issue and whitespace_issue: 289 if deps_issue and whitespace_issue:
291 print 'DEPS roll:\n %s\n' % deps_issue 290 print 'DEPS roll:\n %s\n' % deps_issue
292 print 'Whitespace change:\n %s\n' % whitespace_issue 291 print 'Whitespace change:\n %s\n' % whitespace_issue
293 else: 292 else:
294 print >> sys.stderr, 'No issues created.' 293 print >> sys.stderr, 'No issues created.'
295 294
296 295
297 if __name__ == '__main__': 296 if __name__ == '__main__':
298 main(sys.argv[1:]) 297 main(sys.argv[1:])
OLDNEW
« no previous file with comments | « no previous file | trybots_to_run/chrome/depsroll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698