| 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 # pylint: disable=too-many-lines | 6 # pylint: disable=too-many-lines |
| 7 | 7 |
| 8 """Script to generate chromium.perf.json and chromium.perf.fyi.json in | 8 """Script to generate chromium.perf.json and chromium.perf.fyi.json in |
| 9 the src/testing/buildbot directory and benchmark.csv in the src/tools/perf | 9 the src/testing/buildbot directory and benchmark.csv in the src/tools/perf |
| 10 directory. Maintaining these files by hand is too unwieldy. | 10 directory. Maintaining these files by hand is too unwieldy. |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 'build74-b1--device1', 'build74-b1--device2', 'build74-b1--device3', | 256 'build74-b1--device1', 'build74-b1--device2', 'build74-b1--device3', |
| 257 'build74-b1--device4', 'build74-b1--device5', 'build74-b1--device6', | 257 'build74-b1--device4', 'build74-b1--device5', 'build74-b1--device6', |
| 258 'build74-b1--device7', | 258 'build74-b1--device7', |
| 259 'build75-b1--device1', 'build75-b1--device2', 'build75-b1--device3', | 259 'build75-b1--device1', 'build75-b1--device2', 'build75-b1--device3', |
| 260 'build75-b1--device4', 'build75-b1--device5', 'build75-b1--device6', | 260 'build75-b1--device4', 'build75-b1--device5', 'build75-b1--device6', |
| 261 'build75-b1--device7', | 261 'build75-b1--device7', |
| 262 ], | 262 ], |
| 263 'perf_tests': [ | 263 'perf_tests': [ |
| 264 ('tracing_perftests', 'build73-b1--device2'), | 264 ('tracing_perftests', 'build73-b1--device2'), |
| 265 ('gpu_perftests', 'build73-b1--device2'), | 265 ('gpu_perftests', 'build73-b1--device2'), |
| 266 ('cc_perftests', 'build73-b1--device2'), | 266 # ('cc_perftests', 'build73-b1--device2'), # crbug.com/721757 |
| 267 ] | 267 ] |
| 268 } | 268 } |
| 269 ]) | 269 ]) |
| 270 waterfall = add_tester( | 270 waterfall = add_tester( |
| 271 waterfall, 'Win 10 High-DPI Perf', 'win-high-dpi', 'win', | 271 waterfall, 'Win 10 High-DPI Perf', 'win-high-dpi', 'win', |
| 272 swarming=[ | 272 swarming=[ |
| 273 { | 273 { |
| 274 'gpu': '8086:1616', | 274 'gpu': '8086:1616', |
| 275 'os': 'Windows-10-10240', | 275 'os': 'Windows-10-10240', |
| 276 'pool': 'Chrome-perf', | 276 'pool': 'Chrome-perf', |
| (...skipping 716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 993 return 0 | 993 return 0 |
| 994 else: | 994 else: |
| 995 print ('The perf JSON config files are not up-to-date. Please run %s ' | 995 print ('The perf JSON config files are not up-to-date. Please run %s ' |
| 996 'without --validate-only flag to update the perf JSON ' | 996 'without --validate-only flag to update the perf JSON ' |
| 997 'configs and benchmark.csv.') % sys.argv[0] | 997 'configs and benchmark.csv.') % sys.argv[0] |
| 998 return 1 | 998 return 1 |
| 999 else: | 999 else: |
| 1000 update_all_tests([fyi_waterfall, waterfall]) | 1000 update_all_tests([fyi_waterfall, waterfall]) |
| 1001 update_benchmark_csv() | 1001 update_benchmark_csv() |
| 1002 return 0 | 1002 return 0 |
| OLD | NEW |