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

Side by Side Diff: scripts/slave/bot_update.py

Issue 628523002: WebRTC: Prepare for enabling bot_update for standalone recipe. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 6 years, 2 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 | scripts/slave/recipes/webrtc/standalone.py » ('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/env python 1 #!/usr/bin/env python
2 # Copyright 2014 The Chromium Authors. All rights reserved. 2 # Copyright 2014 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 # TODO(hinoka): Use logging. 6 # TODO(hinoka): Use logging.
7 7
8 import cStringIO 8 import cStringIO
9 import codecs 9 import codecs
10 import collections 10 import collections
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 'chromium.swarm', 234 'chromium.swarm',
235 'chromium.webkit', 235 'chromium.webkit',
236 'chromium.webrtc', 236 'chromium.webrtc',
237 'chromium.webrtc.fyi', 237 'chromium.webrtc.fyi',
238 'chromium.win', 238 'chromium.win',
239 'client.drmemory', 239 'client.drmemory',
240 'client.nacl.sdk', 240 'client.nacl.sdk',
241 'client.nacl.sdk.mono', 241 'client.nacl.sdk.mono',
242 'client.skia', 242 'client.skia',
243 'client.v8', 243 'client.v8',
244 'client.webrtc',
245 'tryserver.blink', 244 'tryserver.blink',
246 'tryserver.chromium.gpu', 245 'tryserver.chromium.gpu',
247 'tryserver.chromium.linux', 246 'tryserver.chromium.linux',
248 'tryserver.chromium.mac', 247 'tryserver.chromium.mac',
249 'tryserver.chromium.perf', 248 'tryserver.chromium.perf',
250 'tryserver.chromium.win', 249 'tryserver.chromium.win',
251 'chromium.perf.fyi', 250 'chromium.perf.fyi',
252 ] 251 ]
253 ENABLED_MASTERS += internal_data.get('ENABLED_MASTERS', []) 252 ENABLED_MASTERS += internal_data.get('ENABLED_MASTERS', [])
254 253
(...skipping 1406 matching lines...) Expand 10 before | Expand all | Expand 10 after
1661 except Exception: 1660 except Exception:
1662 # Unexpected failure. 1661 # Unexpected failure.
1663 emit_flag(options.flag_file) 1662 emit_flag(options.flag_file)
1664 raise 1663 raise
1665 else: 1664 else:
1666 emit_flag(options.flag_file) 1665 emit_flag(options.flag_file)
1667 1666
1668 1667
1669 if __name__ == '__main__': 1668 if __name__ == '__main__':
1670 sys.exit(main()) 1669 sys.exit(main())
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipes/webrtc/standalone.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698