Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1151)

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/tryserver_chromium_perf.py

Issue 2275143002: [perf] Add Win 10 High-DPI Perf bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from . import chromium_perf 5 from . import chromium_perf
6 6
7 import DEPS 7 import DEPS
8 CHROMIUM_CONFIG_CTX = DEPS['chromium'].CONFIG_CTX 8 CHROMIUM_CONFIG_CTX = DEPS['chromium'].CONFIG_CTX
9 GCLIENT_CONFIG_CTX = DEPS['gclient'].CONFIG_CTX 9 GCLIENT_CONFIG_CTX = DEPS['gclient'].CONFIG_CTX
10 10
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 _AddTestSpec('mac_retina_perf_cq', 'mac') 54 _AddTestSpec('mac_retina_perf_cq', 'mac')
55 _AddTestSpec('linux_perf_cq', 'linux') 55 _AddTestSpec('linux_perf_cq', 'linux')
56 56
57 57
58 _AddTestSpec('win_fyi_perf_bisect', 'win', target_bits=32) 58 _AddTestSpec('win_fyi_perf_bisect', 'win', target_bits=32)
59 _AddTestSpec('mac_fyi_perf_bisect', 'mac') 59 _AddTestSpec('mac_fyi_perf_bisect', 'mac')
60 _AddTestSpec('linux_fyi_perf_bisect', 'linux') 60 _AddTestSpec('linux_fyi_perf_bisect', 'linux')
61 61
62 62
63 _AddTestSpec('winx64_zen_perf_bisect', 'win') 63 _AddTestSpec('winx64_zen_perf_bisect', 'win')
64 _AddTestSpec('winx64_high_dpi_perf_bisect', 'win')
64 _AddTestSpec('winx64_10_perf_bisect', 'win') 65 _AddTestSpec('winx64_10_perf_bisect', 'win')
65 _AddTestSpec('win_8_perf_bisect', 'win', target_bits=32) 66 _AddTestSpec('win_8_perf_bisect', 'win', target_bits=32)
66 _AddTestSpec('win_perf_bisect', 'win', target_bits=32) 67 _AddTestSpec('win_perf_bisect', 'win', target_bits=32)
67 _AddTestSpec('win_x64_perf_bisect', 'win') 68 _AddTestSpec('win_x64_perf_bisect', 'win')
68 _AddTestSpec('winx64ati_perf_bisect', 'win') 69 _AddTestSpec('winx64ati_perf_bisect', 'win')
69 _AddTestSpec('winx64intel_perf_bisect', 'win') 70 _AddTestSpec('winx64intel_perf_bisect', 'win')
70 _AddTestSpec('winx64nvidia_perf_bisect', 'win') 71 _AddTestSpec('winx64nvidia_perf_bisect', 'win')
71 72
72 _AddTestSpec('mac_10_11_perf_bisect', 'mac') 73 _AddTestSpec('mac_10_11_perf_bisect', 'mac')
73 _AddTestSpec('mac_10_10_perf_bisect', 'mac') 74 _AddTestSpec('mac_10_10_perf_bisect', 'mac')
74 _AddTestSpec('mac_retina_perf_bisect', 'mac') 75 _AddTestSpec('mac_retina_perf_bisect', 'mac')
75 _AddTestSpec('mac_hdd_perf_bisect', 'mac') 76 _AddTestSpec('mac_hdd_perf_bisect', 'mac')
76 77
77 _AddTestSpec('linux_perf_bisect', 'linux') 78 _AddTestSpec('linux_perf_bisect', 'linux')
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698