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

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

Issue 2010953002: Change chromium.memory.fyi to chromium.memory.full (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Fix file names as well Created 4 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
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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 'chromium.fyi', 243 'chromium.fyi',
244 'chromium.goma', 244 'chromium.goma',
245 'chromium.gpu', 245 'chromium.gpu',
246 'chromium.gpu.fyi', 246 'chromium.gpu.fyi',
247 'chromium.infra', 247 'chromium.infra',
248 'chromium.infra.cron', 248 'chromium.infra.cron',
249 'chromium.linux', 249 'chromium.linux',
250 'chromium.lkgr', 250 'chromium.lkgr',
251 'chromium.mac', 251 'chromium.mac',
252 'chromium.memory', 252 'chromium.memory',
253 'chromium.memory.fyi', 253 'chromium.memory.full',
254 'chromium.perf', 254 'chromium.perf',
255 'chromium.perf.fyi', 255 'chromium.perf.fyi',
256 'chromium.swarm', 256 'chromium.swarm',
257 'chromium.webkit', 257 'chromium.webkit',
258 'chromium.webrtc', 258 'chromium.webrtc',
259 'chromium.webrtc.fyi', 259 'chromium.webrtc.fyi',
260 'chromium.win', 260 'chromium.win',
261 'client.catapult', 261 'client.catapult',
262 'client.drmemory', 262 'client.drmemory',
263 'client.mojo', 263 'client.mojo',
(...skipping 1461 matching lines...) Expand 10 before | Expand all | Expand 10 after
1725 except Exception: 1725 except Exception:
1726 # Unexpected failure. 1726 # Unexpected failure.
1727 emit_flag(options.flag_file) 1727 emit_flag(options.flag_file)
1728 raise 1728 raise
1729 else: 1729 else:
1730 emit_flag(options.flag_file) 1730 emit_flag(options.flag_file)
1731 1731
1732 1732
1733 if __name__ == '__main__': 1733 if __name__ == '__main__':
1734 sys.exit(main()) 1734 sys.exit(main())
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698