| 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.perf.json and chromium.perf.fyi.json in | 6 """Script to generate chromium.perf.json and chromium.perf.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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 | 334 |
| 335 waterfall = add_tester( | 335 waterfall = add_tester( |
| 336 waterfall, 'Mac 10.11 Perf', 'chromium-rel-mac11', | 336 waterfall, 'Mac 10.11 Perf', 'chromium-rel-mac11', |
| 337 'mac', num_host_shards=5) | 337 'mac', num_host_shards=5) |
| 338 waterfall = add_tester( | 338 waterfall = add_tester( |
| 339 waterfall, 'Mac 10.10 Perf', 'chromium-rel-mac10', | 339 waterfall, 'Mac 10.10 Perf', 'chromium-rel-mac10', |
| 340 'mac', | 340 'mac', |
| 341 swarming=[ | 341 swarming=[ |
| 342 { | 342 { |
| 343 'os': 'Mac-10.10', | 343 'os': 'Mac-10.10', |
| 344 'gpu': 'Intel Iris Graphics 5100', | 344 'gpu': '8086:0a2e', |
| 345 'device_ids': [ | 345 'device_ids': [ |
| 346 'build158-m1', 'build159-m1', 'build160-m1', | 346 'build158-m1', 'build159-m1', 'build160-m1', |
| 347 'build161-m1', 'build162-m1'] | 347 'build161-m1', 'build162-m1'] |
| 348 } | 348 } |
| 349 ]) | 349 ]) |
| 350 waterfall = add_tester( | 350 waterfall = add_tester( |
| 351 waterfall, 'Mac Retina Perf', | 351 waterfall, 'Mac Retina Perf', |
| 352 'chromium-rel-mac-retina', 'mac', num_host_shards=5) | 352 'chromium-rel-mac-retina', 'mac', num_host_shards=5) |
| 353 waterfall = add_tester( | 353 waterfall = add_tester( |
| 354 waterfall, 'Mac HDD Perf', 'chromium-rel-mac-hdd', 'mac', num_host_shards=5) | 354 waterfall, 'Mac HDD Perf', 'chromium-rel-mac-hdd', 'mac', num_host_shards=5) |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 657 waterfall['name'] = 'chromium.perf' | 657 waterfall['name'] = 'chromium.perf' |
| 658 fyi_waterfall = get_fyi_waterfall_config() | 658 fyi_waterfall = get_fyi_waterfall_config() |
| 659 fyi_waterfall['name'] = 'chromium.perf.fyi' | 659 fyi_waterfall['name'] = 'chromium.perf.fyi' |
| 660 | 660 |
| 661 generate_all_tests(fyi_waterfall) | 661 generate_all_tests(fyi_waterfall) |
| 662 generate_all_tests(waterfall) | 662 generate_all_tests(waterfall) |
| 663 return 0 | 663 return 0 |
| 664 | 664 |
| 665 if __name__ == '__main__': | 665 if __name__ == '__main__': |
| 666 sys.exit(main()) | 666 sys.exit(main()) |
| OLD | NEW |