| 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 1071 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1082 'tab_capture_end2end_tests': { | 1082 'tab_capture_end2end_tests': { |
| 1083 'tester_configs': [ | 1083 'tester_configs': [ |
| 1084 { | 1084 { |
| 1085 'build_configs': ['Release', 'Release_x64'], | 1085 'build_configs': ['Release', 'Release_x64'], |
| 1086 } | 1086 } |
| 1087 ], | 1087 ], |
| 1088 'override_compile_targets': [ | 1088 'override_compile_targets': [ |
| 1089 'tab_capture_end2end_tests_run', | 1089 'tab_capture_end2end_tests_run', |
| 1090 ], | 1090 ], |
| 1091 }, | 1091 }, |
| 1092 'video_decode_accelerator_unittest': { |
| 1093 'tester_configs': [ |
| 1094 { |
| 1095 'os_types': ['win'] |
| 1096 }, |
| 1097 ], |
| 1098 'args': [ |
| 1099 '--use-test-data-path', |
| 1100 ], |
| 1101 }, |
| 1092 } | 1102 } |
| 1093 | 1103 |
| 1094 # This requires a hack because the isolate's name is different than | 1104 # This requires a hack because the isolate's name is different than |
| 1095 # the executable's name. On the few non-swarmed testers, this causes | 1105 # the executable's name. On the few non-swarmed testers, this causes |
| 1096 # the executable to not be found. It would be better if the Chromium | 1106 # the executable to not be found. It would be better if the Chromium |
| 1097 # recipe supported running isolates locally. crbug.com/581953 | 1107 # recipe supported running isolates locally. crbug.com/581953 |
| 1098 | 1108 |
| 1099 NON_SWARMED_GTESTS = { | 1109 NON_SWARMED_GTESTS = { |
| 1100 'tab_capture_end2end_tests': { | 1110 'tab_capture_end2end_tests': { |
| 1101 'swarming': { | 1111 'swarming': { |
| (...skipping 514 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1616 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) | 1626 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) |
| 1617 fp.write('\n') | 1627 fp.write('\n') |
| 1618 | 1628 |
| 1619 def main(): | 1629 def main(): |
| 1620 generate_all_tests(FYI_WATERFALL, True) | 1630 generate_all_tests(FYI_WATERFALL, True) |
| 1621 generate_all_tests(WATERFALL, False) | 1631 generate_all_tests(WATERFALL, False) |
| 1622 return 0 | 1632 return 0 |
| 1623 | 1633 |
| 1624 if __name__ == "__main__": | 1634 if __name__ == "__main__": |
| 1625 sys.exit(main()) | 1635 sys.exit(main()) |
| OLD | NEW |