| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright 2016 The Chromium Authors. All rights reserved. | 2 # Copyright 2016 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 """Script to generate chromium.gpu.json and chromium.gpu.fyi.json in | 6 """Script to generate chromium.gpu.json and chromium.gpu.fyi.json in |
| 7 the src/testing/buildbot directory. Maintaining these files by hand is | 7 the src/testing/buildbot directory. Maintaining these files by hand is |
| 8 too unwieldy. | 8 too unwieldy. |
| 9 """ | 9 """ |
| 10 | 10 |
| (...skipping 1429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1440 { | 1440 { |
| 1441 # Run this on the FYI waterfall and optional tryservers. | 1441 # Run this on the FYI waterfall and optional tryservers. |
| 1442 'predicate': Predicates.FYI_AND_OPTIONAL, | 1442 'predicate': Predicates.FYI_AND_OPTIONAL, |
| 1443 'os_types': ['win', 'linux', 'mac'], | 1443 'os_types': ['win', 'linux', 'mac'], |
| 1444 }, | 1444 }, |
| 1445 ], | 1445 ], |
| 1446 'disabled_tester_configs': [ | 1446 'disabled_tester_configs': [ |
| 1447 { | 1447 { |
| 1448 'names': [ | 1448 'names': [ |
| 1449 'Linux ChromiumOS Ozone (Intel)', | 1449 'Linux ChromiumOS Ozone (Intel)', |
| 1450 'Mac Experimental Retina Release (AMD)', |
| 1451 'Mac Experimental Retina Release (NVIDIA)', |
| 1452 'Mac Pro Release (AMD)', |
| 1450 ], | 1453 ], |
| 1451 }, | 1454 }, |
| 1452 ], | 1455 ], |
| 1453 }, | 1456 }, |
| 1454 'tab_capture_end2end_tests': { | 1457 'tab_capture_end2end_tests': { |
| 1455 'tester_configs': [ | 1458 'tester_configs': [ |
| 1456 { | 1459 { |
| 1457 'build_configs': ['Release', 'Release_x64'], | 1460 'build_configs': ['Release', 'Release_x64'], |
| 1458 'disabled_instrumentation_types': ['tsan'], | 1461 'disabled_instrumentation_types': ['tsan'], |
| 1459 } | 1462 } |
| (...skipping 880 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2340 install_parent_links(WATERFALL) | 2343 install_parent_links(WATERFALL) |
| 2341 install_parent_links(V8_FYI_WATERFALL) | 2344 install_parent_links(V8_FYI_WATERFALL) |
| 2342 | 2345 |
| 2343 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json') | 2346 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json') |
| 2344 generate_all_tests(WATERFALL, 'chromium.gpu.json') | 2347 generate_all_tests(WATERFALL, 'chromium.gpu.json') |
| 2345 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json') | 2348 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json') |
| 2346 return 0 | 2349 return 0 |
| 2347 | 2350 |
| 2348 if __name__ == "__main__": | 2351 if __name__ == "__main__": |
| 2349 sys.exit(main()) | 2352 sys.exit(main()) |
| OLD | NEW |