| 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 1144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1155 ], | 1155 ], |
| 1156 'target_name': 'webgl_conformance', | 1156 'target_name': 'webgl_conformance', |
| 1157 'extra_browser_args': [ | 1157 'extra_browser_args': [ |
| 1158 '--use-angle=gl', | 1158 '--use-angle=gl', |
| 1159 ], | 1159 ], |
| 1160 }, | 1160 }, |
| 1161 'webgl_conformance_angle_tests': { | 1161 'webgl_conformance_angle_tests': { |
| 1162 'tester_configs': [ | 1162 'tester_configs': [ |
| 1163 { | 1163 { |
| 1164 'fyi_only': True, | 1164 'fyi_only': True, |
| 1165 'os_types': ['linux'] | 1165 'os_types': ['linux'], |
| 1166 'run_on_optional': True, |
| 1166 } | 1167 } |
| 1167 ], | 1168 ], |
| 1168 'target_name': 'webgl_conformance', | 1169 'target_name': 'webgl_conformance', |
| 1169 'extra_browser_args': [ | 1170 'extra_browser_args': [ |
| 1170 '--use-gl=angle', | 1171 '--use-gl=angle', |
| 1171 ], | 1172 ], |
| 1172 }, | 1173 }, |
| 1173 'webgl2_conformance_tests': { | 1174 'webgl2_conformance_tests': { |
| 1174 'tester_configs': [ | 1175 'tester_configs': [ |
| 1175 { | 1176 { |
| (...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1504 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) | 1505 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) |
| 1505 fp.write('\n') | 1506 fp.write('\n') |
| 1506 | 1507 |
| 1507 def main(): | 1508 def main(): |
| 1508 generate_all_tests(FYI_WATERFALL, True) | 1509 generate_all_tests(FYI_WATERFALL, True) |
| 1509 generate_all_tests(WATERFALL, False) | 1510 generate_all_tests(WATERFALL, False) |
| 1510 return 0 | 1511 return 0 |
| 1511 | 1512 |
| 1512 if __name__ == "__main__": | 1513 if __name__ == "__main__": |
| 1513 sys.exit(main()) | 1514 sys.exit(main()) |
| OLD | NEW |