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

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

Issue 2196953003: Remove GYP builders from chromium mac, win waterfalls. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: remove unused suppressions Created 4 years, 4 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 ], 143 ],
144 'tests': [ 144 'tests': [
145 steps.MiniInstallerTest(), 145 steps.MiniInstallerTest(),
146 ], 146 ],
147 'parent_buildername': 'Win x64 Builder', 147 'parent_buildername': 'Win x64 Builder',
148 'testing': { 148 'testing': {
149 'platform': 'win', 149 'platform': 'win',
150 }, 150 },
151 'enable_swarming': True, 151 'enable_swarming': True,
152 }, 152 },
153 'Win8 GYP': {
154 'chromium_config': 'chromium',
155 'chromium_apply_config': ['mb'],
156 'gclient_config': 'chromium',
157 'chromium_config_kwargs': {
158 'BUILD_CONFIG': 'Release',
159 'TARGET_PLATFORM': 'win',
160 'TARGET_BITS': 32,
161 },
162 'test_generators': [
163 steps.generate_gtest,
164 steps.generate_script,
165 steps.generate_isolated_script,
166 ],
167 'enable_swarming': True,
168 'checkout_dir': 'win_gyp',
169 'swarming_dimensions': {
170 'cpu': 'x86-64',
171 'os': 'Windows-8.1-SP0',
172 },
173 'testing': {
174 'platform': 'win',
175 },
176 },
177 'Win x64 Builder (dbg)': { 153 'Win x64 Builder (dbg)': {
178 'chromium_config': 'chromium', 154 'chromium_config': 'chromium',
179 'chromium_apply_config': ['mb', 'ninja_confirm_noop'], 155 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
180 'gclient_config': 'chromium', 156 'gclient_config': 'chromium',
181 'chromium_config_kwargs': { 157 'chromium_config_kwargs': {
182 'BUILD_CONFIG': 'Debug', 158 'BUILD_CONFIG': 'Debug',
183 'TARGET_BITS': 64, 159 'TARGET_BITS': 64,
184 }, 160 },
185 'bot_type': 'builder', 161 'bot_type': 'builder',
186 'compile_targets': [ 162 'compile_targets': [
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 steps.generate_gtest, 201 steps.generate_gtest,
226 steps.generate_script, 202 steps.generate_script,
227 steps.generate_isolated_script, 203 steps.generate_isolated_script,
228 ], 204 ],
229 'parent_buildername': 'Win Builder (dbg)', 205 'parent_buildername': 'Win Builder (dbg)',
230 'testing': { 206 'testing': {
231 'platform': 'win', 207 'platform': 'win',
232 }, 208 },
233 'enable_swarming': True, 209 'enable_swarming': True,
234 }, 210 },
235 'Win8 GYP (dbg)': {
236 'chromium_config': 'chromium',
237 'chromium_apply_config': ['mb'],
238 'gclient_config': 'chromium',
239 'chromium_config_kwargs': {
240 'BUILD_CONFIG': 'Debug',
241 'TARGET_PLATFORM': 'win',
242 'TARGET_BITS': 32,
243 },
244 'test_generators': [
245 steps.generate_gtest,
246 steps.generate_script,
247 steps.generate_isolated_script,
248 ],
249 'enable_swarming': True,
250 'checkout_dir': 'win_gyp',
251 'testing': {
252 'platform': 'win',
253 },
254 },
255 'WinClang64 (dbg)': { 211 'WinClang64 (dbg)': {
256 'chromium_config': 'chromium_win_clang', 212 'chromium_config': 'chromium_win_clang',
257 'chromium_apply_config': ['mb'], 213 'chromium_apply_config': ['mb'],
258 'gclient_config': 'chromium', 214 'gclient_config': 'chromium',
259 'chromium_config_kwargs': { 215 'chromium_config_kwargs': {
260 'BUILD_CONFIG': 'Debug', 216 'BUILD_CONFIG': 'Debug',
261 'TARGET_PLATFORM': 'win', 217 'TARGET_PLATFORM': 'win',
262 'TARGET_BITS': 64, 218 'TARGET_BITS': 64,
263 }, 219 },
264 'compile_targets': [ 220 'compile_targets': [
265 'all', 221 'all',
266 ], 222 ],
267 # Recipes builds Debug builds with component=shared_library by default. 223 # Recipes builds Debug builds with component=shared_library by default.
268 'bot_type': 'builder', 224 'bot_type': 'builder',
269 'testing': { 225 'testing': {
270 'platform': 'win', 226 'platform': 'win',
271 }, 227 },
272 'use_isolate': True, 228 'use_isolate': True,
273 'enable_swarming': True, 229 'enable_swarming': True,
274 # Workaround so that recipes doesn't add random build targets to our 230 # Workaround so that recipes doesn't add random build targets to our
275 # compile line. We want to build everything. 231 # compile line. We want to build everything.
276 'add_tests_as_compile_targets': False, 232 'add_tests_as_compile_targets': False,
277 'checkout_dir': 'win_clang', 233 'checkout_dir': 'win_clang',
278 }, 234 },
279 }, 235 },
280 } 236 }
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/chromium_tests/chromium_mac.py ('k') | scripts/slave/recipe_modules/chromium_tests/trybots.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698