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

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

Issue 2338293005: Rename all 'WebKit Linux' builders to 'WebKit Linux Precise' (1/3 CLs) (Closed)
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 steps 5 from . import steps
6 6
7 RESULTS_URL = 'https://chromeperf.appspot.com' 7 RESULTS_URL = 'https://chromeperf.appspot.com'
8 8
9 9
10 KITCHEN_TEST_SPEC = { 10 KITCHEN_TEST_SPEC = {
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 'compile_targets': [ 130 'compile_targets': [
131 'all', 131 'all',
132 ], 132 ],
133 'testing': { 133 'testing': {
134 'platform': 'linux', 134 'platform': 'linux',
135 }, 135 },
136 }, 136 },
137 # There are no slaves for this builder and this builder doesn't 137 # There are no slaves for this builder and this builder doesn't
138 # appear on the actual continuous waterfall; this configuration 138 # appear on the actual continuous waterfall; this configuration
139 # is here so that a try bot can be added. 139 # is here so that a try bot can be added.
140 'WebKit Linux slimming_paint_v2 Dummy Builder': { 140 'WebKit Linux Precise slimming_paint_v2 Dummy Builder': {
141 'chromium_config': 'chromium', 141 'chromium_config': 'chromium',
142 'chromium_apply_config': ['mb','ninja_confirm_noop'], 142 'chromium_apply_config': ['mb','ninja_confirm_noop'],
143 'gclient_config': 'chromium', 143 'gclient_config': 'chromium',
144 'chromium_config_kwargs': { 144 'chromium_config_kwargs': {
145 'BUILD_CONFIG': 'Release', 145 'BUILD_CONFIG': 'Release',
146 'TARGET_BITS': 64, 146 'TARGET_BITS': 64,
147 }, 147 },
148 'compile_targets': [ 148 'compile_targets': [
149 'blink_tests', 149 'blink_tests',
150 ], 150 ],
151 'test_generators': [ 151 'test_generators': [
152 steps.generate_gtest, 152 steps.generate_gtest,
153 steps.generate_script, 153 steps.generate_script,
154 ], 154 ],
155 'tests': [ 155 'tests': [
156 steps.BlinkTest(extra_args=[ 156 steps.BlinkTest(extra_args=[
157 '--additional-driver-flag=--enable-slimming-paint-v2', 157 '--additional-driver-flag=--enable-slimming-paint-v2',
158 ]), 158 ]),
159 ], 159 ],
160 'testing': { 160 'testing': {
161 'platform': 'linux', 161 'platform': 'linux',
162 }, 162 },
163 'enable_swarming': True, 163 'enable_swarming': True,
164 'use_isolate': True, 164 'use_isolate': True,
165 }, 165 },
166 'WebKit Linux - WPTServe':{ 166 'WebKit Linux Precise - WPTServe':{
167 'chromium_config': 'chromium', 167 'chromium_config': 'chromium',
168 'chromium_apply_config': ['mb','ninja_confirm_noop'], 168 'chromium_apply_config': ['mb','ninja_confirm_noop'],
169 'gclient_config': 'chromium', 169 'gclient_config': 'chromium',
170 'chromium_config_kwargs': { 170 'chromium_config_kwargs': {
171 'BUILD_CONFIG': 'Release', 171 'BUILD_CONFIG': 'Release',
172 'TARGET_BITS': 64, 172 'TARGET_BITS': 64,
173 }, 173 },
174 'compile_targets': [ 174 'compile_targets': [
175 'blink_tests', 175 'blink_tests',
176 ], 176 ],
177 'test_generators': [ 177 'test_generators': [
178 steps.generate_gtest, 178 steps.generate_gtest,
179 steps.generate_script, 179 steps.generate_script,
180 ], 180 ],
181 'tests': [ 181 'tests': [
182 steps.BlinkTest(extra_args=[ 182 steps.BlinkTest(extra_args=[
183 '--enable-wptserve', 183 '--enable-wptserve',
184 ]), 184 ]),
185 ], 185 ],
186 'testing': { 186 'testing': {
187 'platform': 'linux', 187 'platform': 'linux',
188 }, 188 },
189 'enable_swarming': True, 189 'enable_swarming': True,
190 'use_isolate': True, 190 'use_isolate': True,
191 }, 191 },
192 'WebKit Linux - TraceWrappables': { 192 'WebKit Linux Precise - TraceWrappables': {
193 'chromium_config': 'chromium', 193 'chromium_config': 'chromium',
194 'chromium_apply_config': ['mb', 'ninja_confirm_noop'], 194 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
195 'gclient_config': 'chromium', 195 'gclient_config': 'chromium',
196 'chromium_config_kwargs': { 196 'chromium_config_kwargs': {
197 'BUILD_CONFIG': 'Release', 197 'BUILD_CONFIG': 'Release',
198 'TARGET_BITS': 64, 198 'TARGET_BITS': 64,
199 }, 199 },
200 'compile_targets': [ 200 'compile_targets': [
201 'blink_tests', 201 'blink_tests',
202 ], 202 ],
(...skipping 2023 matching lines...) Expand 10 before | Expand all | Expand 10 after
2226 steps.generate_gtest, 2226 steps.generate_gtest,
2227 steps.generate_script, 2227 steps.generate_script,
2228 steps.generate_isolated_script, 2228 steps.generate_isolated_script,
2229 ], 2229 ],
2230 'testing': { 'platform': 'win', }, 2230 'testing': { 'platform': 'win', },
2231 'use_isolate': True, 2231 'use_isolate': True,
2232 'enable_swarming': True, 2232 'enable_swarming': True,
2233 }, 2233 },
2234 }, 2234 },
2235 } 2235 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698