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

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

Issue 2365933002: perf.fyi: Add 'mb' to the Win Clang Builder (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium.expected/full_chromium_perf_fyi_Win_Clang_Builder.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 from . import steps 6 from . import steps
7 7
8 import DEPS 8 import DEPS
9 CHROMIUM_CONFIG_CTX = DEPS['chromium'].CONFIG_CTX 9 CHROMIUM_CONFIG_CTX = DEPS['chromium'].CONFIG_CTX
10 GCLIENT_CONFIG_CTX = DEPS['gclient'].CONFIG_CTX 10 GCLIENT_CONFIG_CTX = DEPS['gclient'].CONFIG_CTX
11 11
12 12
13 SPEC = { 13 SPEC = {
14 'builders': {}, 14 'builders': {},
15 'settings': chromium_perf.SPEC['settings'], 15 'settings': chromium_perf.SPEC['settings'],
16 } 16 }
17 17
18 18
19 @CHROMIUM_CONFIG_CTX(includes=['chromium_win_clang_official']) 19 @CHROMIUM_CONFIG_CTX(includes=['chromium_win_clang_official', 'mb'])
20 def chromium_perf_clang(c): 20 def chromium_perf_clang(c):
21 pass 21 pass
22 22
23 23
24 @GCLIENT_CONFIG_CTX(includes=['chromium_perf']) 24 @GCLIENT_CONFIG_CTX(includes=['chromium_perf'])
25 def chromium_perf_clang(c): 25 def chromium_perf_clang(c):
26 pass 26 pass
27 27
28 28
29 def _AddBuildSpec(name, perf_id, platform, config_name='chromium_perf', 29 def _AddBuildSpec(name, perf_id, platform, config_name='chromium_perf',
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 70
71 _AddTestSpec('Mac Power Dual-GPU Perf', 'mac-power-dual-gpu', 'mac') 71 _AddTestSpec('Mac Power Dual-GPU Perf', 'mac-power-dual-gpu', 'mac')
72 _AddTestSpec('Mac Power Low-End Perf', 'mac-power-low-end', 'mac') 72 _AddTestSpec('Mac Power Low-End Perf', 'mac-power-low-end', 'mac')
73 _AddTestSpec('Mac Test Retina Perf', 'mac-test-retina', 'mac') 73 _AddTestSpec('Mac Test Retina Perf', 'mac-test-retina', 'mac')
74 74
75 75
76 _AddBuildSpec('Win Clang Builder', 'win-clang-builder', 'win', 76 _AddBuildSpec('Win Clang Builder', 'win-clang-builder', 'win',
77 config_name='chromium_perf_clang', target_bits=32) 77 config_name='chromium_perf_clang', target_bits=32)
78 _AddTestSpec('Win Clang Perf', 'chromium-win-clang', 'win', 78 _AddTestSpec('Win Clang Perf', 'chromium-win-clang', 'win',
79 parent_buildername='Win Clang Builder', target_bits=32) 79 parent_buildername='Win Clang Builder', target_bits=32)
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium.expected/full_chromium_perf_fyi_Win_Clang_Builder.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698