| 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 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 584 'gpu': '1002:6613', | 584 'gpu': '1002:6613', |
| 585 'os': 'Ubuntu' | 585 'os': 'Ubuntu' |
| 586 }, | 586 }, |
| 587 ], | 587 ], |
| 588 'build_config': 'Release', | 588 'build_config': 'Release', |
| 589 # This bot is a one-off and doesn't have similar slaves in the | 589 # This bot is a one-off and doesn't have similar slaves in the |
| 590 # swarming pool. | 590 # swarming pool. |
| 591 'swarming': False, | 591 'swarming': False, |
| 592 'os_type': 'linux', | 592 'os_type': 'linux', |
| 593 }, | 593 }, |
| 594 'Linux GPU TSAN Release': { |
| 595 'swarming_dimensions': [ |
| 596 { |
| 597 'gpu': '10de:104a', |
| 598 'os': 'Ubuntu' |
| 599 }, |
| 600 ], |
| 601 'build_config': 'Release', |
| 602 'swarming': True, |
| 603 'os_type': 'linux', |
| 604 }, |
| 594 'Android Release (Nexus 5)': { | 605 'Android Release (Nexus 5)': { |
| 595 'swarming_dimensions': [ | 606 'swarming_dimensions': [ |
| 596 { | 607 { |
| 597 # There are no PCI IDs on Android. | 608 # There are no PCI IDs on Android. |
| 598 # This is a hack to get the script working. | 609 # This is a hack to get the script working. |
| 599 'gpu': '0000:0000', | 610 'gpu': '0000:0000', |
| 600 'os': 'Android' | 611 'os': 'Android' |
| 601 }, | 612 }, |
| 602 ], | 613 ], |
| 603 'build_config': 'android-chromium', | 614 'build_config': 'android-chromium', |
| (...skipping 1390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1994 install_parent_links(WATERFALL) | 2005 install_parent_links(WATERFALL) |
| 1995 install_parent_links(V8_FYI_WATERFALL) | 2006 install_parent_links(V8_FYI_WATERFALL) |
| 1996 | 2007 |
| 1997 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json') | 2008 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json') |
| 1998 generate_all_tests(WATERFALL, 'chromium.gpu.json') | 2009 generate_all_tests(WATERFALL, 'chromium.gpu.json') |
| 1999 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json') | 2010 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json') |
| 2000 return 0 | 2011 return 0 |
| 2001 | 2012 |
| 2002 if __name__ == "__main__": | 2013 if __name__ == "__main__": |
| 2003 sys.exit(main()) | 2014 sys.exit(main()) |
| OLD | NEW |