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

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

Issue 2414253003: Add recipe config for android clang x86 tester. (Closed)
Patch Set: rename bot Created 4 years, 2 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 1429 matching lines...) Expand 10 before | Expand all | Expand 10 after
1440 'compile_targets': [ 1440 'compile_targets': [
1441 'all', 1441 'all',
1442 ], 1442 ],
1443 'bot_type': 'builder', 1443 'bot_type': 'builder',
1444 'android_config': 'clang_tot_debug_builder', 1444 'android_config': 'clang_tot_debug_builder',
1445 'testing': { 'platform': 'linux', }, 1445 'testing': { 'platform': 'linux', },
1446 # Workaround so that recipes doesn't add random build targets to our 1446 # Workaround so that recipes doesn't add random build targets to our
1447 # compile line. We want to build everything. 1447 # compile line. We want to build everything.
1448 'add_tests_as_compile_targets': False, 1448 'add_tests_as_compile_targets': False,
1449 }, 1449 },
1450 'ClangToTAndroid x86': {
1451 'chromium_config': 'android',
Nico 2016/10/18 23:44:59 clang_tot_android not needed?
bpastene 2016/10/25 22:24:42 Added it. I'm 90% sure a lot of this becomes obso
1452 'gclient_config': 'chromium',
1453 'gclient_apply_config': ['android'],
1454 'chromium_config_kwargs': {
1455 'BUILD_CONFIG': 'Release',
1456 'TARGET_BITS': 32,
1457 'TARGET_PLATFORM': 'android',
1458 },
1459 'bot_type': 'builder_tester',
1460 'android_config': 'x86_builder_mb',
1461 'testing': {
1462 'platform': 'linux',
1463 },
1464 },
1450 'ClangToTMac': { 1465 'ClangToTMac': {
1451 'chromium_config': 'clang_tot_mac', 1466 'chromium_config': 'clang_tot_mac',
1452 'gclient_config': 'chromium', 1467 'gclient_config': 'chromium',
1453 'chromium_apply_config': ['mb'], 1468 'chromium_apply_config': ['mb'],
1454 'chromium_config_kwargs': { 1469 'chromium_config_kwargs': {
1455 'BUILD_CONFIG': 'Release', 1470 'BUILD_CONFIG': 'Release',
1456 'TARGET_BITS': 64, 1471 'TARGET_BITS': 64,
1457 }, 1472 },
1458 'GYP_DEFINES': { 1473 'GYP_DEFINES': {
1459 'component': 'shared_library', 1474 'component': 'shared_library',
(...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after
2095 'TARGET_PLATFORM': 'win', 2110 'TARGET_PLATFORM': 'win',
2096 'TARGET_BITS': 32, 2111 'TARGET_BITS': 32,
2097 }, 2112 },
2098 'bot_type': 'builder_tester', 2113 'bot_type': 'builder_tester',
2099 'testing': { 'platform': 'win', }, 2114 'testing': { 'platform': 'win', },
2100 'use_isolate': True, 2115 'use_isolate': True,
2101 'enable_swarming': True, 2116 'enable_swarming': True,
2102 }, 2117 },
2103 }, 2118 },
2104 } 2119 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698