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

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

Issue 2463523002: Add Linux Ozone fyi compile-only bot (Closed)
Patch Set: Created 4 years, 1 month 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 394 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 'BUILD_CONFIG': 'Release', 405 'BUILD_CONFIG': 'Release',
406 'TARGET_BITS': 32, 406 'TARGET_BITS': 32,
407 }, 407 },
408 'GYP_DEFINES': { 408 'GYP_DEFINES': {
409 'use_openssl': '1', 409 'use_openssl': '1',
410 }, 410 },
411 'testing': { 411 'testing': {
412 'platform': 'mac', 412 'platform': 'mac',
413 }, 413 },
414 }, 414 },
415 'Ozone Linux': {
416 'chromium_config': 'chromium',
417 'chromium_apply_config': ['mb'],
418 'gclient_config': 'chromium',
419 'chromium_config_kwargs': {
420 'BUILD_CONFIG': 'Release',
421 'TARGET_BITS': 64,
422 },
423 'bot_type': 'builder',
424 'compile_targets': [
425 'content_unittests',
426 'content_browsertests',
427 ],
Dirk Pranke 2016/10/28 22:07:58 Leave this array empty.
428 'checkout_dir': 'linux',
429 'testing': {
430 'platform': 'linux',
431 },
432 'use_isolate': True,
433 'enable_swarming': True,
434 },
415 'Site Isolation Android': { 435 'Site Isolation Android': {
416 'chromium_config': 'android', 436 'chromium_config': 'android',
417 'gclient_config': 'chromium', 437 'gclient_config': 'chromium',
418 'gclient_apply_config': ['android'], 438 'gclient_apply_config': ['android'],
419 'chromium_config_kwargs': { 439 'chromium_config_kwargs': {
420 'BUILD_CONFIG': 'Release', 440 'BUILD_CONFIG': 'Release',
421 'TARGET_BITS': 64, 441 'TARGET_BITS': 64,
422 'TARGET_PLATFORM': 'android', 442 'TARGET_PLATFORM': 'android',
423 }, 443 },
424 'bot_type': 'builder_tester', 444 'bot_type': 'builder_tester',
(...skipping 1687 matching lines...) Expand 10 before | Expand all | Expand 10 after
2112 'TARGET_PLATFORM': 'win', 2132 'TARGET_PLATFORM': 'win',
2113 'TARGET_BITS': 32, 2133 'TARGET_BITS': 32,
2114 }, 2134 },
2115 'bot_type': 'builder_tester', 2135 'bot_type': 'builder_tester',
2116 'testing': { 'platform': 'win', }, 2136 'testing': { 'platform': 'win', },
2117 'use_isolate': True, 2137 'use_isolate': True,
2118 'enable_swarming': True, 2138 'enable_swarming': True,
2119 }, 2139 },
2120 }, 2140 },
2121 } 2141 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698