OLD | NEW |
---|---|
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 SPEC = { | 9 SPEC = { |
10 'settings': { | 10 'settings': { |
(...skipping 1175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1186 }, | 1186 }, |
1187 'test_generators': [ | 1187 'test_generators': [ |
1188 steps.generate_gtest, | 1188 steps.generate_gtest, |
1189 steps.generate_script, | 1189 steps.generate_script, |
1190 ], | 1190 ], |
1191 'bot_type': 'tester', | 1191 'bot_type': 'tester', |
1192 'parent_buildername': 'ClangToTMacASan', | 1192 'parent_buildername': 'ClangToTMacASan', |
1193 'testing': { 'platform': 'mac', }, | 1193 'testing': { 'platform': 'mac', }, |
1194 'enable_swarming': True, | 1194 'enable_swarming': True, |
1195 }, | 1195 }, |
1196 'ClangToTiOS': { | |
1197 'chromium_config': 'clang_tot_ios', | |
1198 'gclient_config': 'ios', | |
1199 'chromium_config_kwargs': { | |
1200 'BUILD_CONFIG': 'Release', | |
1201 'TARGET_PLATFORM': 'ios', | |
1202 'TARGET_BITS': 32, | |
1203 }, | |
1204 'gclient_config_kwargs': { | |
1205 'GIT_MODE': True, | |
1206 }, | |
1207 'GYP_DEFINES': { | |
1208 'werror': '', | |
1209 # Plugin flags often need to be changed when using a plugin newer than | |
1210 # the latest Clang package, so disable plugins. | |
1211 'clang_use_chrome_plugins': '0', | |
1212 }, | |
1213 'testing': { | |
1214 'platform': 'mac', | |
1215 } | |
1216 }, | |
smut
2015/05/18 23:00:05
ios/unified_builder_tester is just going to ignore
hans
2015/05/18 23:31:30
But scripts/slave/recipes/chromium.expected/full_c
smut
2015/05/19 00:07:29
full_chromium_fyi_ClangToTiOS.json is not the expe
| |
1217 | |
1196 'Linux Builder (clobber)': { | 1218 'Linux Builder (clobber)': { |
1197 'chromium_config': 'chromium', | 1219 'chromium_config': 'chromium', |
1198 'gclient_config': 'chromium', | 1220 'gclient_config': 'chromium', |
1199 'chromium_apply_config': ['clobber'], | 1221 'chromium_apply_config': ['clobber'], |
1200 'chromium_config_kwargs': { | 1222 'chromium_config_kwargs': { |
1201 'BUILD_CONFIG': 'Release', | 1223 'BUILD_CONFIG': 'Release', |
1202 'TARGET_BITS': 64, | 1224 'TARGET_BITS': 64, |
1203 }, | 1225 }, |
1204 'compile_targets': [ | 1226 'compile_targets': [ |
1205 # chromium_tests.analyze treats "all" compile target in a special way; | 1227 # chromium_tests.analyze treats "all" compile target in a special way; |
1206 # Make sure to trigger it to make sure we respect compile targets | 1228 # Make sure to trigger it to make sure we respect compile targets |
1207 # returned by gyp analyzer. | 1229 # returned by gyp analyzer. |
1208 'all', | 1230 'all', |
1209 ], | 1231 ], |
1210 'testing': { | 1232 'testing': { |
1211 'platform': 'linux', | 1233 'platform': 'linux', |
1212 }, | 1234 }, |
1213 }, | 1235 }, |
1214 | |
1215 'Android Tests (trial)(dbg)': { | 1236 'Android Tests (trial)(dbg)': { |
1216 'chromium_config': 'android', | 1237 'chromium_config': 'android', |
1217 'gclient_config': 'chromium', | 1238 'gclient_config': 'chromium', |
1218 'gclient_apply_config': ['android'], | 1239 'gclient_apply_config': ['android'], |
1219 'chromium_config_kwargs': { | 1240 'chromium_config_kwargs': { |
1220 'BUILD_CONFIG': 'Debug', | 1241 'BUILD_CONFIG': 'Debug', |
1221 'TARGET_BITS': 32, | 1242 'TARGET_BITS': 32, |
1222 'TARGET_PLATFORM': 'android', | 1243 'TARGET_PLATFORM': 'android', |
1223 }, | 1244 }, |
1224 'bot_type': 'tester', | 1245 'bot_type': 'tester', |
(...skipping 30 matching lines...) Expand all Loading... | |
1255 'ChromotingTest', 'remoting_test_apk', | 1276 'ChromotingTest', 'remoting_test_apk', |
1256 adb_install_apk=( | 1277 adb_install_apk=( |
1257 'Chromoting.apk', 'org.chromium.chromoting')), | 1278 'Chromoting.apk', 'org.chromium.chromoting')), |
1258 ], | 1279 ], |
1259 'testing': { | 1280 'testing': { |
1260 'platform': 'linux', | 1281 'platform': 'linux', |
1261 }, | 1282 }, |
1262 }, | 1283 }, |
1263 }, | 1284 }, |
1264 } | 1285 } |
OLD | NEW |