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

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

Issue 2098943002: Rename Mac/Win GN builders to GYP builders. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: fix masters_recipes_test.py to handle deprecated builders Created 4 years, 5 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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
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': { 151 'Win8 Aura': {
152 # TODO(dpranke): Remove after masters have restarted.
152 'chromium_config': 'chromium', 153 'chromium_config': 'chromium',
153 'chromium_apply_config': ['mb'], 154 'chromium_apply_config': ['mb'],
154 'gclient_config': 'chromium', 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': {
176 'chromium_config': 'chromium',
177 'chromium_apply_config': ['mb'],
178 'gclient_config': 'chromium',
155 'chromium_config_kwargs': { 179 'chromium_config_kwargs': {
156 'BUILD_CONFIG': 'Release', 180 'BUILD_CONFIG': 'Release',
157 'TARGET_PLATFORM': 'win', 181 'TARGET_PLATFORM': 'win',
158 'TARGET_BITS': 32, 182 'TARGET_BITS': 32,
159 }, 183 },
160 'test_generators': [ 184 'test_generators': [
161 steps.generate_gtest, 185 steps.generate_gtest,
162 steps.generate_script, 186 steps.generate_script,
163 steps.generate_isolated_script, 187 steps.generate_isolated_script,
164 ], 188 ],
165 'enable_swarming': True, 189 'enable_swarming': True,
166 'swarming_dimensions': { 190 'swarming_dimensions': {
167 'cpu': 'x86-64', 191 'cpu': 'x86-64',
168 'os': 'Windows-8.1-SP0', 192 'os': 'Windows-8.1-SP0',
169 }, 193 },
170 'testing': { 194 'testing': {
171 'platform': 'win', 195 'platform': 'win',
172 }, 196 },
173 }, 197 },
174
175 'Win x64 Builder (dbg)': { 198 'Win x64 Builder (dbg)': {
176 'chromium_config': 'chromium', 199 'chromium_config': 'chromium',
177 'chromium_apply_config': ['mb', 'ninja_confirm_noop'], 200 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
178 'gclient_config': 'chromium', 201 'gclient_config': 'chromium',
179 'chromium_config_kwargs': { 202 'chromium_config_kwargs': {
180 'BUILD_CONFIG': 'Debug', 203 'BUILD_CONFIG': 'Debug',
181 'TARGET_BITS': 64, 204 'TARGET_BITS': 64,
182 }, 205 },
183 'bot_type': 'builder', 206 'bot_type': 'builder',
184 'compile_targets': [ 207 'compile_targets': [
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 steps.generate_script, 246 steps.generate_script,
224 steps.generate_isolated_script, 247 steps.generate_isolated_script,
225 ], 248 ],
226 'parent_buildername': 'Win Builder (dbg)', 249 'parent_buildername': 'Win Builder (dbg)',
227 'testing': { 250 'testing': {
228 'platform': 'win', 251 'platform': 'win',
229 }, 252 },
230 'enable_swarming': True, 253 'enable_swarming': True,
231 }, 254 },
232 'Win8 GN (dbg)': { 255 'Win8 GN (dbg)': {
256 # TODO(dpranke): Remove after masters have restarted.
233 'chromium_config': 'chromium', 257 'chromium_config': 'chromium',
234 'chromium_apply_config': ['mb'], 258 'chromium_apply_config': ['mb'],
235 'gclient_config': 'chromium', 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)': {
276 'chromium_config': 'chromium',
277 'chromium_apply_config': ['mb'],
278 'gclient_config': 'chromium',
236 'chromium_config_kwargs': { 279 'chromium_config_kwargs': {
237 'BUILD_CONFIG': 'Debug', 280 'BUILD_CONFIG': 'Debug',
238 'TARGET_PLATFORM': 'win', 281 'TARGET_PLATFORM': 'win',
239 'TARGET_BITS': 32, 282 'TARGET_BITS': 32,
240 }, 283 },
241 'test_generators': [ 284 'test_generators': [
242 steps.generate_gtest, 285 steps.generate_gtest,
243 steps.generate_script, 286 steps.generate_script,
244 steps.generate_isolated_script, 287 steps.generate_isolated_script,
245 ], 288 ],
(...skipping 20 matching lines...) Expand all
266 'platform': 'win', 309 'platform': 'win',
267 }, 310 },
268 'use_isolate': True, 311 'use_isolate': True,
269 'enable_swarming': True, 312 'enable_swarming': True,
270 # Workaround so that recipes doesn't add random build targets to our 313 # Workaround so that recipes doesn't add random build targets to our
271 # compile line. We want to build everything. 314 # compile line. We want to build everything.
272 'add_tests_as_compile_targets': False, 315 'add_tests_as_compile_targets': False,
273 }, 316 },
274 }, 317 },
275 } 318 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698