| 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 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 { | 349 { |
| 350 'gpu': '8086:0166', | 350 'gpu': '8086:0166', |
| 351 'os': 'Mac-10.11', | 351 'os': 'Mac-10.11', |
| 352 'device_ids': [ | 352 'device_ids': [ |
| 353 'build102-b1', 'build103-b1', | 353 'build102-b1', 'build103-b1', |
| 354 'build104-b1', 'build105-b1', 'build106-b1' | 354 'build104-b1', 'build105-b1', 'build106-b1' |
| 355 ] | 355 ] |
| 356 } | 356 } |
| 357 ]) | 357 ]) |
| 358 waterfall = add_tester( | 358 waterfall = add_tester( |
| 359 waterfall, 'Mac 10.10 Perf', 'chromium-rel-mac10', | 359 waterfall, 'Mac 10.12 Perf', 'chromium-rel-mac12', |
| 360 'mac', | 360 'mac', |
| 361 swarming=[ | 361 swarming=[ |
| 362 { | 362 { |
| 363 'os': 'Mac-10.10', | 363 'os': 'Mac-10.12', |
| 364 'gpu': '8086:0a2e', | 364 'gpu': '8086:0a2e', |
| 365 'device_ids': [ | 365 'device_ids': [ |
| 366 'build158-m1', 'build159-m1', 'build160-m1', | 366 'build158-m1', 'build159-m1', 'build160-m1', |
| 367 'build161-m1', 'build162-m1'] | 367 'build161-m1', 'build162-m1'] |
| 368 } | 368 } |
| 369 ]) | 369 ]) |
| 370 waterfall = add_tester( | 370 waterfall = add_tester( |
| 371 waterfall, 'Mac Retina Perf', | 371 waterfall, 'Mac Retina Perf', |
| 372 'chromium-rel-mac-retina', 'mac', | 372 'chromium-rel-mac-retina', 'mac', |
| 373 swarming=[ | 373 swarming=[ |
| (...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 739 waterfall['name'] = 'chromium.perf' | 739 waterfall['name'] = 'chromium.perf' |
| 740 fyi_waterfall = get_fyi_waterfall_config() | 740 fyi_waterfall = get_fyi_waterfall_config() |
| 741 fyi_waterfall['name'] = 'chromium.perf.fyi' | 741 fyi_waterfall['name'] = 'chromium.perf.fyi' |
| 742 | 742 |
| 743 generate_all_tests(fyi_waterfall) | 743 generate_all_tests(fyi_waterfall) |
| 744 generate_all_tests(waterfall) | 744 generate_all_tests(waterfall) |
| 745 return 0 | 745 return 0 |
| 746 | 746 |
| 747 if __name__ == '__main__': | 747 if __name__ == '__main__': |
| 748 sys.exit(main()) | 748 sys.exit(main()) |
| OLD | NEW |