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

Unified Diff: testing/buildbot/manage.py

Issue 1206033005: Rework how isolates are generated in MB. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add ui_base_unittests_run Created 5 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 side-by-side diff with in-line comments
Download patch
Index: testing/buildbot/manage.py
diff --git a/testing/buildbot/manage.py b/testing/buildbot/manage.py
index 3ac1b6e9d6efc2d9de4a299f0759b57ae6df5bd9..8ebd8a314d8a712d5ba34e8487c0dca682349f36 100755
--- a/testing/buildbot/manage.py
+++ b/testing/buildbot/manage.py
@@ -40,7 +40,10 @@ SKIP = {
# http://crbug.com/480053
'Linux GN',
'Linux GN (dbg)',
- 'linux_chromium_gn_rel',
+ 'Mac GN',
+ 'Mac GN (dbg)',
+ 'Win8 Aura',
+ 'Win8 GN (dbg)'
# Unmaintained builders on chromium.fyi
'ClangToTMac',
@@ -264,8 +267,9 @@ def main():
'count_run_local': 0, 'count_run_on_swarming': 0, 'local_configs': {}
})
- with open(os.path.join(THIS_DIR, "ninja_to_gn.pyl")) as fp:
- ninja_targets = ast.literal_eval(fp.read())
+ with open(os.path.join(THIS_DIR, "gn_isolate_map.pyl")) as fp:
+ gn_isolate_map = ast.literal_eval(fp.read())
+ ninja_targets = dict((k, v['label']) for k, v in gn_isolate_map.items())
M-A Ruel 2015/06/25 14:49:22 ninja_targets = {k: v['label'] for k, v in gn_isol
try:
result = 0

Powered by Google App Engine
This is Rietveld 408576698