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 |