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

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

Issue 2298093005: Remove top chrome material design FYI builders (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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 steps.BlinkTest(extra_args=[ 261 steps.BlinkTest(extra_args=[
262 '--enable-wptserve', 262 '--enable-wptserve',
263 ]), 263 ]),
264 ], 264 ],
265 'testing': { 265 'testing': {
266 'platform': 'win', 266 'platform': 'win',
267 }, 267 },
268 'enable_swarming': True, 268 'enable_swarming': True,
269 'use_isolate': True, 269 'use_isolate': True,
270 }, 270 },
271 'MD Top Chrome ChromeOS non-material': {
272 'chromium_config': 'chromium',
273 'chromium_apply_config': ['chromeos', 'mb'],
274 'gclient_config': 'chromium',
275 'chromium_config_kwargs': {
276 'BUILD_CONFIG': 'Debug',
277 'TARGET_PLATFORM': 'chromeos',
278 'TARGET_BITS': 64,
279 },
280 'bot_type': 'builder_tester',
281 'test_generators': [
282 steps.generate_gtest,
283 steps.generate_script,
284 steps.generate_isolated_script,
285 ],
286 'testing': {
287 'platform': 'linux',
288 },
289 },
290 'MD Top Chrome ChromeOS material-hybrid': {
291 'chromium_config': 'chromium',
292 'chromium_apply_config': ['chromeos', 'mb'],
293 'gclient_config': 'chromium',
294 'chromium_config_kwargs': {
295 'BUILD_CONFIG': 'Debug',
296 'TARGET_PLATFORM': 'chromeos',
297 'TARGET_BITS': 64,
298 },
299 'bot_type': 'builder_tester',
300 'test_generators': [
301 steps.generate_gtest,
302 steps.generate_script,
303 steps.generate_isolated_script,
304 ],
305 'testing': {
306 'platform': 'linux',
307 },
308 },
309 'MD Top Chrome Win material': {
310 'chromium_config': 'chromium',
311 'chromium_apply_config': ['mb'],
312 'gclient_config': 'chromium',
313 'chromium_config_kwargs': {
314 'BUILD_CONFIG': 'Debug',
315 'TARGET_PLATFORM': 'win',
316 'TARGET_BITS': 64,
317 },
318 'bot_type': 'builder_tester',
319 'test_generators': [
320 steps.generate_gtest,
321 steps.generate_script,
322 steps.generate_isolated_script,
323 ],
324 'testing': {
325 'platform': 'win',
326 },
327 },
328 'MD Top Chrome Linux material': {
329 'chromium_config': 'chromium',
330 'chromium_apply_config': ['mb'],
331 'gclient_config': 'chromium',
332 'chromium_config_kwargs': {
333 'BUILD_CONFIG': 'Debug',
334 'TARGET_PLATFORM': 'linux',
335 'TARGET_BITS': 64,
336 },
337 'bot_type': 'builder_tester',
338 'test_generators': [
339 steps.generate_gtest,
340 steps.generate_script,
341 steps.generate_isolated_script,
342 ],
343 'testing': {
344 'platform': 'linux',
345 },
346 },
347 'Print Preview Linux': { 271 'Print Preview Linux': {
348 'chromium_config': 'chromium', 272 'chromium_config': 'chromium',
349 'gclient_config': 'chromium', 273 'gclient_config': 'chromium',
350 'GYP_DEFINES': { 274 'GYP_DEFINES': {
351 'component': 'shared_library', 275 'component': 'shared_library',
352 }, 276 },
353 'chromium_config_kwargs': { 277 'chromium_config_kwargs': {
354 'BUILD_CONFIG': 'Release', 278 'BUILD_CONFIG': 'Release',
355 'TARGET_PLATFORM': 'linux', 279 'TARGET_PLATFORM': 'linux',
356 'TARGET_BITS': 64, 280 'TARGET_BITS': 64,
(...skipping 1914 matching lines...) Expand 10 before | Expand all | Expand 10 after
2271 steps.generate_gtest, 2195 steps.generate_gtest,
2272 steps.generate_script, 2196 steps.generate_script,
2273 steps.generate_isolated_script, 2197 steps.generate_isolated_script,
2274 ], 2198 ],
2275 'testing': { 'platform': 'win', }, 2199 'testing': { 'platform': 'win', },
2276 'use_isolate': True, 2200 'use_isolate': True,
2277 'enable_swarming': True, 2201 'enable_swarming': True,
2278 }, 2202 },
2279 }, 2203 },
2280 } 2204 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698