| 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 1286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1297 ], | 1297 ], |
| 1298 }, | 1298 }, |
| 1299 'video_decode_accelerator_unittest': { | 1299 'video_decode_accelerator_unittest': { |
| 1300 'tester_configs': [ | 1300 'tester_configs': [ |
| 1301 { | 1301 { |
| 1302 'os_types': ['win'] | 1302 'os_types': ['win'] |
| 1303 }, | 1303 }, |
| 1304 ], | 1304 ], |
| 1305 'args': [ | 1305 'args': [ |
| 1306 '--use-test-data-path', | 1306 '--use-test-data-path', |
| 1307 '--test_video_data=test-25fps.h264:320:240:250:258:::1', |
| 1307 ], | 1308 ], |
| 1308 }, | 1309 }, |
| 1309 } | 1310 } |
| 1310 | 1311 |
| 1311 # This requires a hack because the isolate's name is different than | 1312 # This requires a hack because the isolate's name is different than |
| 1312 # the executable's name. On the few non-swarmed testers, this causes | 1313 # the executable's name. On the few non-swarmed testers, this causes |
| 1313 # the executable to not be found. It would be better if the Chromium | 1314 # the executable to not be found. It would be better if the Chromium |
| 1314 # recipe supported running isolates locally. crbug.com/581953 | 1315 # recipe supported running isolates locally. crbug.com/581953 |
| 1315 | 1316 |
| 1316 NON_SWARMED_GTESTS = { | 1317 NON_SWARMED_GTESTS = { |
| (...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1930 install_parent_links(WATERFALL) | 1931 install_parent_links(WATERFALL) |
| 1931 install_parent_links(V8_FYI_WATERFALL) | 1932 install_parent_links(V8_FYI_WATERFALL) |
| 1932 | 1933 |
| 1933 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json') | 1934 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json') |
| 1934 generate_all_tests(WATERFALL, 'chromium.gpu.json') | 1935 generate_all_tests(WATERFALL, 'chromium.gpu.json') |
| 1935 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json') | 1936 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json') |
| 1936 return 0 | 1937 return 0 |
| 1937 | 1938 |
| 1938 if __name__ == "__main__": | 1939 if __name__ == "__main__": |
| 1939 sys.exit(main()) | 1940 sys.exit(main()) |
| OLD | NEW |