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

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

Issue 2097223002: Remove traces of removed Mac/Win GN builders. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 6 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 SPEC = { 7 SPEC = {
8 'settings': { 8 'settings': {
9 'build_gs_bucket': 'chromium-win-archive', 9 'build_gs_bucket': 'chromium-win-archive',
10 # WARNING: src-side runtest.py is only tested with chromium CQ builders. 10 # WARNING: src-side runtest.py is only tested with chromium CQ builders.
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 ], 141 ],
142 'tests': [ 142 'tests': [
143 steps.MiniInstallerTest(), 143 steps.MiniInstallerTest(),
144 ], 144 ],
145 'parent_buildername': 'Win x64 Builder', 145 'parent_buildername': 'Win x64 Builder',
146 'testing': { 146 'testing': {
147 'platform': 'win', 147 'platform': 'win',
148 }, 148 },
149 'enable_swarming': True, 149 'enable_swarming': True,
150 }, 150 },
151 'Win8 Aura': {
152 # TODO(dpranke): Remove after masters have restarted.
153 'chromium_config': 'chromium',
154 'chromium_apply_config': ['mb'],
155 'gclient_config': 'chromium',
156 'chromium_config_kwargs': {
157 'BUILD_CONFIG': 'Release',
158 'TARGET_PLATFORM': 'win',
159 'TARGET_BITS': 32,
160 },
161 'test_generators': [
162 steps.generate_gtest,
163 steps.generate_script,
164 steps.generate_isolated_script,
165 ],
166 'enable_swarming': True,
167 'swarming_dimensions': {
168 'cpu': 'x86-64',
169 'os': 'Windows-8.1-SP0',
170 },
171 'testing': {
172 'platform': 'win',
173 },
174 },
175 'Win8 GYP': { 151 'Win8 GYP': {
176 'chromium_config': 'chromium', 152 'chromium_config': 'chromium',
177 'chromium_apply_config': ['mb'], 153 'chromium_apply_config': ['mb'],
178 'gclient_config': 'chromium', 154 'gclient_config': 'chromium',
179 'chromium_config_kwargs': { 155 'chromium_config_kwargs': {
180 'BUILD_CONFIG': 'Release', 156 'BUILD_CONFIG': 'Release',
181 'TARGET_PLATFORM': 'win', 157 'TARGET_PLATFORM': 'win',
182 'TARGET_BITS': 32, 158 'TARGET_BITS': 32,
183 }, 159 },
184 'test_generators': [ 160 'test_generators': [
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 steps.generate_gtest, 221 steps.generate_gtest,
246 steps.generate_script, 222 steps.generate_script,
247 steps.generate_isolated_script, 223 steps.generate_isolated_script,
248 ], 224 ],
249 'parent_buildername': 'Win Builder (dbg)', 225 'parent_buildername': 'Win Builder (dbg)',
250 'testing': { 226 'testing': {
251 'platform': 'win', 227 'platform': 'win',
252 }, 228 },
253 'enable_swarming': True, 229 'enable_swarming': True,
254 }, 230 },
255 'Win8 GN (dbg)': {
256 # TODO(dpranke): Remove after masters have restarted.
257 'chromium_config': 'chromium',
258 'chromium_apply_config': ['mb'],
259 'gclient_config': 'chromium',
260 'chromium_config_kwargs': {
261 'BUILD_CONFIG': 'Debug',
262 'TARGET_PLATFORM': 'win',
263 'TARGET_BITS': 32,
264 },
265 'test_generators': [
266 steps.generate_gtest,
267 steps.generate_script,
268 steps.generate_isolated_script,
269 ],
270 'enable_swarming': True,
271 'testing': {
272 'platform': 'win',
273 },
274 },
275 'Win8 GYP (dbg)': { 231 'Win8 GYP (dbg)': {
276 'chromium_config': 'chromium', 232 'chromium_config': 'chromium',
277 'chromium_apply_config': ['mb'], 233 'chromium_apply_config': ['mb'],
278 'gclient_config': 'chromium', 234 'gclient_config': 'chromium',
279 'chromium_config_kwargs': { 235 'chromium_config_kwargs': {
280 'BUILD_CONFIG': 'Debug', 236 'BUILD_CONFIG': 'Debug',
281 'TARGET_PLATFORM': 'win', 237 'TARGET_PLATFORM': 'win',
282 'TARGET_BITS': 32, 238 'TARGET_BITS': 32,
283 }, 239 },
284 'test_generators': [ 240 'test_generators': [
(...skipping 24 matching lines...) Expand all
309 'platform': 'win', 265 'platform': 'win',
310 }, 266 },
311 'use_isolate': True, 267 'use_isolate': True,
312 'enable_swarming': True, 268 'enable_swarming': True,
313 # Workaround so that recipes doesn't add random build targets to our 269 # Workaround so that recipes doesn't add random build targets to our
314 # compile line. We want to build everything. 270 # compile line. We want to build everything.
315 'add_tests_as_compile_targets': False, 271 'add_tests_as_compile_targets': False,
316 }, 272 },
317 }, 273 },
318 } 274 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698