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

Side by Side Diff: scripts/slave/recipe_modules/webrtc/builders.py

Issue 1347413002: WebRTC: Rename trybots and add compile-only configs. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Fixed one copy-paste mistake Created 5 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 # Contains the bulk of the WebRTC builder configurations so they can be reused 5 # Contains the bulk of the WebRTC builder configurations so they can be reused
6 # from multiple recipes. 6 # from multiple recipes.
7 7
8 from infra.libs.infra_types import freeze 8 from infra.libs.infra_types import freeze
9 9
10 RECIPE_CONFIGS = freeze({ 10 RECIPE_CONFIGS = freeze({
11 'webrtc': { 11 'webrtc': {
12 'chromium_config': 'webrtc_standalone', 12 'chromium_config': 'webrtc_standalone',
13 'gclient_config': 'webrtc', 13 'gclient_config': 'webrtc',
14 'test_suite': 'webrtc', 14 'test_suite': 'webrtc',
15 }, 15 },
16 'webrtc_compile': {
17 'chromium_config': 'webrtc_standalone',
18 'gclient_config': 'webrtc',
19 },
20 'webrtc_compile_android': {
21 'chromium_config': 'android',
22 'chromium_android_config': 'webrtc',
23 'gclient_config': 'webrtc',
24 'gclient_apply_config': ['android'],
25 },
16 'webrtc_baremetal': { 26 'webrtc_baremetal': {
17 'chromium_config': 'webrtc_standalone', 27 'chromium_config': 'webrtc_standalone',
18 'gclient_config': 'webrtc', 28 'gclient_config': 'webrtc',
19 'test_suite': 'webrtc_baremetal', 29 'test_suite': 'webrtc_baremetal',
20 }, 30 },
21 'webrtc_clang': { 31 'webrtc_clang': {
22 'chromium_config': 'webrtc_clang', 32 'chromium_config': 'webrtc_clang',
23 'gclient_config': 'webrtc', 33 'gclient_config': 'webrtc',
24 'test_suite': 'webrtc', 34 'test_suite': 'webrtc',
25 }, 35 },
(...skipping 971 matching lines...) Expand 10 before | Expand all | Expand 10 after
997 }, 1007 },
998 'bot_type': 'tester', 1008 'bot_type': 'tester',
999 'parent_buildername': 'Android Builder (dbg)', 1009 'parent_buildername': 'Android Builder (dbg)',
1000 'build_gs_archive': 'fyi_android_apk_dbg_archive', 1010 'build_gs_archive': 'fyi_android_apk_dbg_archive',
1001 'testing': {'platform': 'linux'}, 1011 'testing': {'platform': 'linux'},
1002 }, 1012 },
1003 }, 1013 },
1004 }, 1014 },
1005 'tryserver.webrtc': { 1015 'tryserver.webrtc': {
1006 'builders': { 1016 'builders': {
1007 'win': { 1017 'win_compile_dbg': {
1018 'recipe_config': 'webrtc_compile',
1019 'chromium_config_kwargs': {
1020 'BUILD_CONFIG': 'Debug',
1021 'TARGET_BITS': 32,
1022 },
1023 'bot_type': 'builder_tester',
1024 'testing': {'platform': 'win'},
1025 },
1026 'win_compile_rel': {
1027 'recipe_config': 'webrtc_compile',
1028 'chromium_config_kwargs': {
1029 'BUILD_CONFIG': 'Release',
1030 'TARGET_BITS': 32,
1031 },
1032 'bot_type': 'builder_tester',
1033 'testing': {'platform': 'win'},
1034 },
1035 'win_compile_x64_dbg': {
1036 'recipe_config': 'webrtc_compile',
1037 'chromium_config_kwargs': {
1038 'BUILD_CONFIG': 'Debug',
1039 'TARGET_BITS': 64,
1040 },
1041 'bot_type': 'builder_tester',
1042 'testing': {'platform': 'win'},
1043 },
1044 'win_compile_x64_rel': {
1045 'recipe_config': 'webrtc_compile',
1046 'chromium_config_kwargs': {
1047 'BUILD_CONFIG': 'Release',
1048 'TARGET_BITS': 64,
1049 },
1050 'bot_type': 'builder_tester',
1051 'testing': {'platform': 'win'},
1052 },
1053 'win_dbg': {
1008 'recipe_config': 'webrtc_parallel', 1054 'recipe_config': 'webrtc_parallel',
1009 'chromium_config_kwargs': { 1055 'chromium_config_kwargs': {
1010 'BUILD_CONFIG': 'Debug', 1056 'BUILD_CONFIG': 'Debug',
1011 'TARGET_BITS': 32, 1057 'TARGET_BITS': 32,
1012 }, 1058 },
1013 'bot_type': 'builder_tester', 1059 'bot_type': 'builder_tester',
1014 'testing': {'platform': 'win'}, 1060 'testing': {'platform': 'win'},
1015 }, 1061 },
1016 'win_rel': { 1062 'win_rel': {
1017 'recipe_config': 'webrtc_parallel', 1063 'recipe_config': 'webrtc_parallel',
1018 'chromium_config_kwargs': { 1064 'chromium_config_kwargs': {
1019 'BUILD_CONFIG': 'Release', 1065 'BUILD_CONFIG': 'Release',
1020 'TARGET_BITS': 32, 1066 'TARGET_BITS': 32,
1021 }, 1067 },
1022 'bot_type': 'builder_tester', 1068 'bot_type': 'builder_tester',
1023 'testing': {'platform': 'win'}, 1069 'testing': {'platform': 'win'},
1024 }, 1070 },
1071 'win_x64_dbg': {
1072 'recipe_config': 'webrtc_parallel',
1073 'chromium_config_kwargs': {
1074 'BUILD_CONFIG': 'Debug',
1075 'TARGET_BITS': 64,
1076 },
1077 'bot_type': 'builder_tester',
1078 'testing': {'platform': 'win'},
1079 },
1025 'win_x64_rel': { 1080 'win_x64_rel': {
1026 'recipe_config': 'webrtc_parallel', 1081 'recipe_config': 'webrtc_parallel',
1027 'chromium_config_kwargs': { 1082 'chromium_config_kwargs': {
1028 'BUILD_CONFIG': 'Release', 1083 'BUILD_CONFIG': 'Release',
1029 'TARGET_BITS': 64, 1084 'TARGET_BITS': 64,
1030 }, 1085 },
1031 'bot_type': 'builder_tester', 1086 'bot_type': 'builder_tester',
1032 'testing': {'platform': 'win'}, 1087 'testing': {'platform': 'win'},
1033 }, 1088 },
1034 'win_x64_gn': { 1089 'win_x64_gn': {
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
1083 'win_drmemory_full': { 1138 'win_drmemory_full': {
1084 'recipe_config': 'webrtc', 1139 'recipe_config': 'webrtc',
1085 'chromium_apply_config': ['drmemory_full'], 1140 'chromium_apply_config': ['drmemory_full'],
1086 'chromium_config_kwargs': { 1141 'chromium_config_kwargs': {
1087 'BUILD_CONFIG': 'Debug', 1142 'BUILD_CONFIG': 'Debug',
1088 'TARGET_BITS': 32, 1143 'TARGET_BITS': 32,
1089 }, 1144 },
1090 'bot_type': 'builder_tester', 1145 'bot_type': 'builder_tester',
1091 'testing': {'platform': 'win'}, 1146 'testing': {'platform': 'win'},
1092 }, 1147 },
1093 'mac': { 1148 'mac_compile_dbg': {
1149 'recipe_config': 'webrtc_compile',
1150 'chromium_config_kwargs': {
1151 'BUILD_CONFIG': 'Debug',
1152 'TARGET_BITS': 32,
1153 },
1154 'bot_type': 'builder_tester',
1155 'testing': {'platform': 'mac'},
1156 },
1157 'mac_compile_rel': {
1158 'recipe_config': 'webrtc_compile',
1159 'chromium_config_kwargs': {
1160 'BUILD_CONFIG': 'Release',
1161 'TARGET_BITS': 32,
1162 },
1163 'bot_type': 'builder_tester',
1164 'testing': {'platform': 'mac'},
1165 },
1166 'mac_compile_x64_dbg': {
1167 'recipe_config': 'webrtc_compile',
1168 'chromium_config_kwargs': {
1169 'BUILD_CONFIG': 'Debug',
1170 'TARGET_BITS': 64,
1171 },
1172 'bot_type': 'builder_tester',
1173 'testing': {'platform': 'mac'},
1174 },
1175 'mac_compile_x64_rel': {
1176 'recipe_config': 'webrtc_compile',
1177 'chromium_config_kwargs': {
1178 'BUILD_CONFIG': 'Release',
1179 'TARGET_BITS': 64,
1180 },
1181 'bot_type': 'builder_tester',
1182 'testing': {'platform': 'mac'},
1183 },
1184 'mac_dbg': {
1094 'recipe_config': 'webrtc', 1185 'recipe_config': 'webrtc',
1095 'chromium_config_kwargs': { 1186 'chromium_config_kwargs': {
1096 'BUILD_CONFIG': 'Debug', 1187 'BUILD_CONFIG': 'Debug',
1097 'TARGET_BITS': 32, 1188 'TARGET_BITS': 32,
1098 }, 1189 },
1099 'bot_type': 'builder_tester', 1190 'bot_type': 'builder_tester',
1100 'testing': {'platform': 'mac'}, 1191 'testing': {'platform': 'mac'},
1101 }, 1192 },
1102 'mac_rel': { 1193 'mac_rel': {
1103 'recipe_config': 'webrtc', 1194 'recipe_config': 'webrtc',
1104 'chromium_config_kwargs': { 1195 'chromium_config_kwargs': {
1105 'BUILD_CONFIG': 'Release', 1196 'BUILD_CONFIG': 'Release',
1106 'TARGET_BITS': 32, 1197 'TARGET_BITS': 32,
1107 }, 1198 },
1108 'bot_type': 'builder_tester', 1199 'bot_type': 'builder_tester',
1109 'testing': {'platform': 'mac'}, 1200 'testing': {'platform': 'mac'},
1110 }, 1201 },
1111 'mac_x64': { 1202 'mac_x64_dbg': {
1112 'recipe_config': 'webrtc', 1203 'recipe_config': 'webrtc',
1113 'chromium_config_kwargs': { 1204 'chromium_config_kwargs': {
1114 'BUILD_CONFIG': 'Debug', 1205 'BUILD_CONFIG': 'Debug',
1115 'TARGET_BITS': 64, 1206 'TARGET_BITS': 64,
1116 }, 1207 },
1117 'bot_type': 'builder_tester', 1208 'bot_type': 'builder_tester',
1118 'testing': {'platform': 'mac'}, 1209 'testing': {'platform': 'mac'},
1119 }, 1210 },
1120 'mac_x64_rel': { 1211 'mac_x64_rel': {
1121 'recipe_config': 'webrtc', 1212 'recipe_config': 'webrtc',
1122 'chromium_config_kwargs': { 1213 'chromium_config_kwargs': {
1123 'BUILD_CONFIG': 'Release', 1214 'BUILD_CONFIG': 'Release',
1124 'TARGET_BITS': 64, 1215 'TARGET_BITS': 64,
1125 }, 1216 },
1126 'bot_type': 'builder_tester', 1217 'bot_type': 'builder_tester',
1127 'testing': {'platform': 'mac'}, 1218 'testing': {'platform': 'mac'},
1128 }, 1219 },
1129 'mac_x64_gn': { 1220 'mac_x64_gn_dbg': {
1130 'recipe_config': 'webrtc', 1221 'recipe_config': 'webrtc',
1131 'chromium_config_kwargs': { 1222 'chromium_config_kwargs': {
1132 'BUILD_CONFIG': 'Debug', 1223 'BUILD_CONFIG': 'Debug',
1133 'TARGET_BITS': 64, 1224 'TARGET_BITS': 64,
1134 }, 1225 },
1135 'chromium_apply_config': ['webrtc_gn'], 1226 'chromium_apply_config': ['webrtc_gn'],
1136 'bot_type': 'builder', 1227 'bot_type': 'builder',
1137 'testing': {'platform': 'mac'}, 1228 'testing': {'platform': 'mac'},
1138 }, 1229 },
1139 'mac_x64_gn_rel': { 1230 'mac_x64_gn_rel': {
(...skipping 18 matching lines...) Expand all
1158 }, 1249 },
1159 'mac_baremetal': { 1250 'mac_baremetal': {
1160 'recipe_config': 'webrtc_baremetal', 1251 'recipe_config': 'webrtc_baremetal',
1161 'chromium_config_kwargs': { 1252 'chromium_config_kwargs': {
1162 'BUILD_CONFIG': 'Release', 1253 'BUILD_CONFIG': 'Release',
1163 'TARGET_BITS': 32, 1254 'TARGET_BITS': 32,
1164 }, 1255 },
1165 'bot_type': 'builder_tester', 1256 'bot_type': 'builder_tester',
1166 'testing': {'platform': 'mac'}, 1257 'testing': {'platform': 'mac'},
1167 }, 1258 },
1168 'ios': { 1259 'ios_dbg': {
1169 'recipe_config': 'webrtc_ios', 1260 'recipe_config': 'webrtc_ios',
1170 'chromium_config_kwargs': { 1261 'chromium_config_kwargs': {
1171 'BUILD_CONFIG': 'Debug', 1262 'BUILD_CONFIG': 'Debug',
1172 'TARGET_BITS': 32, 1263 'TARGET_BITS': 32,
1173 'TARGET_ARCH': 'arm', 1264 'TARGET_ARCH': 'arm',
1174 'TARGET_PLATFORM': 'ios', 1265 'TARGET_PLATFORM': 'ios',
1175 }, 1266 },
1176 'bot_type': 'builder', 1267 'bot_type': 'builder',
1177 'testing': {'platform': 'mac'}, 1268 'testing': {'platform': 'mac'},
1178 }, 1269 },
1179 'ios_rel': { 1270 'ios_rel': {
1180 'recipe_config': 'webrtc_ios', 1271 'recipe_config': 'webrtc_ios',
1181 'chromium_config_kwargs': { 1272 'chromium_config_kwargs': {
1182 'BUILD_CONFIG': 'Release', 1273 'BUILD_CONFIG': 'Release',
1183 'TARGET_BITS': 32, 1274 'TARGET_BITS': 32,
1184 'TARGET_ARCH': 'arm', 1275 'TARGET_ARCH': 'arm',
1185 'TARGET_PLATFORM': 'ios', 1276 'TARGET_PLATFORM': 'ios',
1186 }, 1277 },
1187 'bot_type': 'builder', 1278 'bot_type': 'builder',
1188 'testing': {'platform': 'mac'}, 1279 'testing': {'platform': 'mac'},
1189 }, 1280 },
1190 'ios_arm64': { 1281 'ios_arm64_dbg': {
1191 'recipe_config': 'webrtc_ios', 1282 'recipe_config': 'webrtc_ios',
1192 'chromium_config_kwargs': { 1283 'chromium_config_kwargs': {
1193 'BUILD_CONFIG': 'Debug', 1284 'BUILD_CONFIG': 'Debug',
1194 'TARGET_BITS': 64, 1285 'TARGET_BITS': 64,
1195 'TARGET_ARCH': 'arm', 1286 'TARGET_ARCH': 'arm',
1196 'TARGET_PLATFORM': 'ios', 1287 'TARGET_PLATFORM': 'ios',
1197 }, 1288 },
1198 'bot_type': 'builder', 1289 'bot_type': 'builder',
1199 'testing': {'platform': 'mac'}, 1290 'testing': {'platform': 'mac'},
1200 }, 1291 },
1201 'ios_arm64_rel': { 1292 'ios_arm64_rel': {
1202 'recipe_config': 'webrtc_ios', 1293 'recipe_config': 'webrtc_ios',
1203 'chromium_config_kwargs': { 1294 'chromium_config_kwargs': {
1204 'BUILD_CONFIG': 'Release', 1295 'BUILD_CONFIG': 'Release',
1205 'TARGET_BITS': 64, 1296 'TARGET_BITS': 64,
1206 'TARGET_ARCH': 'arm', 1297 'TARGET_ARCH': 'arm',
1207 'TARGET_PLATFORM': 'ios', 1298 'TARGET_PLATFORM': 'ios',
1208 }, 1299 },
1209 'bot_type': 'builder', 1300 'bot_type': 'builder',
1210 'testing': {'platform': 'mac'}, 1301 'testing': {'platform': 'mac'},
1211 }, 1302 },
1212 'ios32_sim': { 1303 'ios32_sim_dbg': {
1213 'recipe_config': 'webrtc_ios', 1304 'recipe_config': 'webrtc_ios',
1214 'chromium_config_kwargs': { 1305 'chromium_config_kwargs': {
1215 'BUILD_CONFIG': 'Debug', 1306 'BUILD_CONFIG': 'Debug',
1216 'TARGET_BITS': 32, 1307 'TARGET_BITS': 32,
1217 'TARGET_ARCH': 'intel', 1308 'TARGET_ARCH': 'intel',
1218 'TARGET_PLATFORM': 'ios', 1309 'TARGET_PLATFORM': 'ios',
1219 }, 1310 },
1220 'bot_type': 'builder', 1311 'bot_type': 'builder',
1221 'testing': {'platform': 'mac'}, 1312 'testing': {'platform': 'mac'},
1222 }, 1313 },
1223 'ios64_sim': { 1314 'ios64_sim_dbg': {
1224 'recipe_config': 'webrtc_ios', 1315 'recipe_config': 'webrtc_ios',
1225 'chromium_config_kwargs': { 1316 'chromium_config_kwargs': {
1226 'BUILD_CONFIG': 'Debug', 1317 'BUILD_CONFIG': 'Debug',
1227 'TARGET_BITS': 64, 1318 'TARGET_BITS': 64,
1228 'TARGET_ARCH': 'intel', 1319 'TARGET_ARCH': 'intel',
1229 'TARGET_PLATFORM': 'ios', 1320 'TARGET_PLATFORM': 'ios',
1230 }, 1321 },
1231 'bot_type': 'builder', 1322 'bot_type': 'builder',
1232 'testing': {'platform': 'mac'}, 1323 'testing': {'platform': 'mac'},
1233 }, 1324 },
1234 'linux': { 1325 'linux_compile_dbg': {
1326 'recipe_config': 'webrtc_compile',
1327 'chromium_config_kwargs': {
1328 'BUILD_CONFIG': 'Debug',
1329 'TARGET_BITS': 64,
1330 },
1331 'bot_type': 'builder_tester',
1332 'testing': {'platform': 'linux'},
1333 },
1334 'linux_compile_rel': {
1335 'recipe_config': 'webrtc_compile',
1336 'chromium_config_kwargs': {
1337 'BUILD_CONFIG': 'Release',
1338 'TARGET_BITS': 64,
1339 },
1340 'bot_type': 'builder_tester',
1341 'testing': {'platform': 'linux'},
1342 },
1343 'linux_dbg': {
1235 'recipe_config': 'webrtc_parallel', 1344 'recipe_config': 'webrtc_parallel',
1236 'chromium_config_kwargs': { 1345 'chromium_config_kwargs': {
1237 'BUILD_CONFIG': 'Debug', 1346 'BUILD_CONFIG': 'Debug',
1238 'TARGET_BITS': 64, 1347 'TARGET_BITS': 64,
1239 }, 1348 },
1240 'bot_type': 'builder_tester', 1349 'bot_type': 'builder_tester',
1241 'testing': {'platform': 'linux'}, 1350 'testing': {'platform': 'linux'},
1242 }, 1351 },
1243 'linux_rel': { 1352 'linux_rel': {
1244 'recipe_config': 'webrtc_parallel', 1353 'recipe_config': 'webrtc_parallel',
1245 'chromium_config_kwargs': { 1354 'chromium_config_kwargs': {
1246 'BUILD_CONFIG': 'Release', 1355 'BUILD_CONFIG': 'Release',
1247 'TARGET_BITS': 64, 1356 'TARGET_BITS': 64,
1248 }, 1357 },
1249 'bot_type': 'builder_tester', 1358 'bot_type': 'builder_tester',
1250 'testing': {'platform': 'linux'}, 1359 'testing': {'platform': 'linux'},
1251 }, 1360 },
1252 'linux_gn': { 1361 'linux_gn_dbg': {
1253 'recipe_config': 'webrtc', 1362 'recipe_config': 'webrtc',
1254 'chromium_config_kwargs': { 1363 'chromium_config_kwargs': {
1255 'BUILD_CONFIG': 'Debug', 1364 'BUILD_CONFIG': 'Debug',
1256 'TARGET_BITS': 64, 1365 'TARGET_BITS': 64,
1257 }, 1366 },
1258 'chromium_apply_config': ['webrtc_gn'], 1367 'chromium_apply_config': ['webrtc_gn'],
1259 'bot_type': 'builder', 1368 'bot_type': 'builder',
1260 'testing': {'platform': 'linux'}, 1369 'testing': {'platform': 'linux'},
1261 }, 1370 },
1262 'linux_gn_rel': { 1371 'linux_gn_rel': {
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
1313 }, 1422 },
1314 'linux_baremetal': { 1423 'linux_baremetal': {
1315 'recipe_config': 'webrtc_baremetal', 1424 'recipe_config': 'webrtc_baremetal',
1316 'chromium_config_kwargs': { 1425 'chromium_config_kwargs': {
1317 'BUILD_CONFIG': 'Release', 1426 'BUILD_CONFIG': 'Release',
1318 'TARGET_BITS': 64, 1427 'TARGET_BITS': 64,
1319 }, 1428 },
1320 'bot_type': 'builder_tester', 1429 'bot_type': 'builder_tester',
1321 'testing': {'platform': 'linux'}, 1430 'testing': {'platform': 'linux'},
1322 }, 1431 },
1323 'android': { 1432 'android_compile_dbg': {
1433 'recipe_config': 'webrtc_compile_android',
1434 'chromium_config_kwargs': {
1435 'BUILD_CONFIG': 'Debug',
1436 'TARGET_PLATFORM': 'android',
1437 'TARGET_ARCH': 'arm',
1438 'TARGET_BITS': 32,
1439 },
1440 'bot_type': 'builder_tester',
1441 'testing': {'platform': 'linux'},
1442 },
1443 'android_compile_rel': {
1444 'recipe_config': 'webrtc_compile_android',
1445 'chromium_config_kwargs': {
1446 'BUILD_CONFIG': 'Release',
1447 'TARGET_PLATFORM': 'android',
1448 'TARGET_ARCH': 'arm',
1449 'TARGET_BITS': 32,
1450 },
1451 'bot_type': 'builder_tester',
1452 'testing': {'platform': 'linux'},
1453 },
1454 'android_compile_arm64_dbg': {
1455 'recipe_config': 'webrtc_compile_android',
1456 'chromium_config_kwargs': {
1457 'BUILD_CONFIG': 'Debug',
1458 'TARGET_PLATFORM': 'android',
1459 'TARGET_ARCH': 'arm',
1460 'TARGET_BITS': 64,
1461 },
1462 'bot_type': 'builder_tester',
1463 'testing': {'platform': 'linux'},
1464 },
1465 'android_compile_arm64_rel': {
1466 'recipe_config': 'webrtc_compile_android',
1467 'chromium_config_kwargs': {
1468 'BUILD_CONFIG': 'Release',
1469 'TARGET_PLATFORM': 'android',
1470 'TARGET_ARCH': 'arm',
1471 'TARGET_BITS': 64,
1472 },
1473 'bot_type': 'builder_tester',
1474 'testing': {'platform': 'linux'},
1475 },
1476 'android_dbg': {
1324 'recipe_config': 'webrtc_android', 1477 'recipe_config': 'webrtc_android',
1325 'chromium_config_kwargs': { 1478 'chromium_config_kwargs': {
1326 'BUILD_CONFIG': 'Debug', 1479 'BUILD_CONFIG': 'Debug',
1327 'TARGET_PLATFORM': 'android', 1480 'TARGET_PLATFORM': 'android',
1328 'TARGET_ARCH': 'arm', 1481 'TARGET_ARCH': 'arm',
1329 'TARGET_BITS': 32, 1482 'TARGET_BITS': 32,
1330 }, 1483 },
1331 'bot_type': 'builder_tester', 1484 'bot_type': 'builder_tester',
1332 'testing': {'platform': 'linux'}, 1485 'testing': {'platform': 'linux'},
1333 }, 1486 },
1334 'android_rel': { 1487 'android_rel': {
1335 'recipe_config': 'webrtc_android', 1488 'recipe_config': 'webrtc_android',
1336 'chromium_config_kwargs': { 1489 'chromium_config_kwargs': {
1337 'BUILD_CONFIG': 'Release', 1490 'BUILD_CONFIG': 'Release',
1338 'TARGET_PLATFORM': 'android', 1491 'TARGET_PLATFORM': 'android',
1339 'TARGET_ARCH': 'arm', 1492 'TARGET_ARCH': 'arm',
1340 'TARGET_BITS': 32, 1493 'TARGET_BITS': 32,
1341 }, 1494 },
1342 'bot_type': 'builder_tester', 1495 'bot_type': 'builder_tester',
1343 'testing': {'platform': 'linux'}, 1496 'testing': {'platform': 'linux'},
1344 }, 1497 },
1345 'android_clang': { 1498 'android_clang_dbg': {
1346 'recipe_config': 'webrtc_android_clang', 1499 'recipe_config': 'webrtc_android_clang',
1347 'chromium_config_kwargs': { 1500 'chromium_config_kwargs': {
1348 'BUILD_CONFIG': 'Debug', 1501 'BUILD_CONFIG': 'Debug',
1349 'TARGET_PLATFORM': 'android', 1502 'TARGET_PLATFORM': 'android',
1350 'TARGET_ARCH': 'arm', 1503 'TARGET_ARCH': 'arm',
1351 'TARGET_BITS': 32, 1504 'TARGET_BITS': 32,
1352 }, 1505 },
1353 'bot_type': 'builder', 1506 'bot_type': 'builder',
1354 'testing': {'platform': 'linux'}, 1507 'testing': {'platform': 'linux'},
1355 }, 1508 },
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
1390 'recipe_config': 'webrtc_android', 1543 'recipe_config': 'webrtc_android',
1391 'chromium_config_kwargs': { 1544 'chromium_config_kwargs': {
1392 'BUILD_CONFIG': 'Debug', 1545 'BUILD_CONFIG': 'Debug',
1393 'TARGET_PLATFORM': 'android', 1546 'TARGET_PLATFORM': 'android',
1394 'TARGET_ARCH': 'arm', 1547 'TARGET_ARCH': 'arm',
1395 'TARGET_BITS': 32, 1548 'TARGET_BITS': 32,
1396 }, 1549 },
1397 'bot_type': 'builder_tester', 1550 'bot_type': 'builder_tester',
1398 'testing': {'platform': 'linux'}, 1551 'testing': {'platform': 'linux'},
1399 }, 1552 },
1400 'android_gn': { 1553 'android_gn_dbg': {
1401 'recipe_config': 'webrtc_android', 1554 'recipe_config': 'webrtc_android',
1402 'chromium_config_kwargs': { 1555 'chromium_config_kwargs': {
1403 'BUILD_CONFIG': 'Debug', 1556 'BUILD_CONFIG': 'Debug',
1404 'TARGET_PLATFORM': 'android', 1557 'TARGET_PLATFORM': 'android',
1405 'TARGET_ARCH': 'arm', 1558 'TARGET_ARCH': 'arm',
1406 'TARGET_BITS': 32, 1559 'TARGET_BITS': 32,
1407 }, 1560 },
1408 'chromium_apply_config': ['webrtc_gn'], 1561 'chromium_apply_config': ['webrtc_gn'],
1409 'bot_type': 'builder', 1562 'bot_type': 'builder',
1410 'testing': {'platform': 'linux'}, 1563 'testing': {'platform': 'linux'},
1411 }, 1564 },
1412 'android_gn_rel': { 1565 'android_gn_rel': {
1413 'recipe_config': 'webrtc_android', 1566 'recipe_config': 'webrtc_android',
1414 'chromium_config_kwargs': { 1567 'chromium_config_kwargs': {
1415 'BUILD_CONFIG': 'Release', 1568 'BUILD_CONFIG': 'Release',
1416 'TARGET_PLATFORM': 'android', 1569 'TARGET_PLATFORM': 'android',
1417 'TARGET_ARCH': 'arm', 1570 'TARGET_ARCH': 'arm',
1418 'TARGET_BITS': 32, 1571 'TARGET_BITS': 32,
1419 }, 1572 },
1420 'chromium_apply_config': ['webrtc_gn'], 1573 'chromium_apply_config': ['webrtc_gn'],
1421 'bot_type': 'builder', 1574 'bot_type': 'builder',
1422 'testing': {'platform': 'linux'}, 1575 'testing': {'platform': 'linux'},
1423 }, 1576 },
1424 }, 1577 },
1425 }, 1578 },
1426 }) 1579 })
1427 1580
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698