| 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 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 535 'gpu': '10de:0f02', | 535 'gpu': '10de:0f02', |
| 536 'os': 'Ubuntu' | 536 'os': 'Ubuntu' |
| 537 }, | 537 }, |
| 538 ], | 538 ], |
| 539 'build_config': 'Release', | 539 'build_config': 'Release', |
| 540 # This bot is a one-off and doesn't have similar slaves in the | 540 # This bot is a one-off and doesn't have similar slaves in the |
| 541 # swarming pool. | 541 # swarming pool. |
| 542 'swarming': False, | 542 'swarming': False, |
| 543 'os_type': 'linux', | 543 'os_type': 'linux', |
| 544 }, | 544 }, |
| 545 'Linux Release (NVIDIA Quadro M2000)': { |
| 546 'swarming_dimensions': [ |
| 547 { |
| 548 'gpu': '10de:1430', |
| 549 'os': 'Ubuntu' |
| 550 }, |
| 551 ], |
| 552 'build_config': 'Release', |
| 553 # This bot is a one-off and doesn't have similar slaves in the |
| 554 # swarming pool. |
| 555 'swarming': False, |
| 556 'os_type': 'linux', |
| 557 }, |
| 545 'Linux Debug (NVIDIA)': { | 558 'Linux Debug (NVIDIA)': { |
| 546 'swarming_dimensions': [ | 559 'swarming_dimensions': [ |
| 547 { | 560 { |
| 548 'gpu': '10de:104a', | 561 'gpu': '10de:104a', |
| 549 'os': 'Ubuntu' | 562 'os': 'Ubuntu' |
| 550 }, | 563 }, |
| 551 ], | 564 ], |
| 552 'build_config': 'Debug', | 565 'build_config': 'Debug', |
| 553 'swarming': True, | 566 'swarming': True, |
| 554 'os_type': 'linux', | 567 'os_type': 'linux', |
| (...skipping 1801 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2356 install_parent_links(WATERFALL) | 2369 install_parent_links(WATERFALL) |
| 2357 install_parent_links(V8_FYI_WATERFALL) | 2370 install_parent_links(V8_FYI_WATERFALL) |
| 2358 | 2371 |
| 2359 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json') | 2372 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json') |
| 2360 generate_all_tests(WATERFALL, 'chromium.gpu.json') | 2373 generate_all_tests(WATERFALL, 'chromium.gpu.json') |
| 2361 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json') | 2374 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json') |
| 2362 return 0 | 2375 return 0 |
| 2363 | 2376 |
| 2364 if __name__ == "__main__": | 2377 if __name__ == "__main__": |
| 2365 sys.exit(main()) | 2378 sys.exit(main()) |
| OLD | NEW |