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 # 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 recipe_engine.types import freeze | 8 from recipe_engine.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 994 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1020 }, | 1030 }, |
1021 'bot_type': 'tester', | 1031 'bot_type': 'tester', |
1022 'parent_buildername': 'Android Builder (dbg)', | 1032 'parent_buildername': 'Android Builder (dbg)', |
1023 'build_gs_archive': 'fyi_android_apk_dbg_archive', | 1033 'build_gs_archive': 'fyi_android_apk_dbg_archive', |
1024 'testing': {'platform': 'linux'}, | 1034 'testing': {'platform': 'linux'}, |
1025 }, | 1035 }, |
1026 }, | 1036 }, |
1027 }, | 1037 }, |
1028 'tryserver.webrtc': { | 1038 'tryserver.webrtc': { |
1029 'builders': { | 1039 'builders': { |
1030 'win': { | 1040 'win_compile_dbg': { |
| 1041 'recipe_config': 'webrtc_compile', |
| 1042 'chromium_config_kwargs': { |
| 1043 'BUILD_CONFIG': 'Debug', |
| 1044 'TARGET_BITS': 32, |
| 1045 }, |
| 1046 'bot_type': 'builder_tester', |
| 1047 'testing': {'platform': 'win'}, |
| 1048 }, |
| 1049 'win_compile_rel': { |
| 1050 'recipe_config': 'webrtc_compile', |
| 1051 'chromium_config_kwargs': { |
| 1052 'BUILD_CONFIG': 'Release', |
| 1053 'TARGET_BITS': 32, |
| 1054 }, |
| 1055 'bot_type': 'builder_tester', |
| 1056 'testing': {'platform': 'win'}, |
| 1057 }, |
| 1058 'win_compile_x64_dbg': { |
| 1059 'recipe_config': 'webrtc_compile', |
| 1060 'chromium_config_kwargs': { |
| 1061 'BUILD_CONFIG': 'Debug', |
| 1062 'TARGET_BITS': 64, |
| 1063 }, |
| 1064 'bot_type': 'builder_tester', |
| 1065 'testing': {'platform': 'win'}, |
| 1066 }, |
| 1067 'win_compile_x64_rel': { |
| 1068 'recipe_config': 'webrtc_compile', |
| 1069 'chromium_config_kwargs': { |
| 1070 'BUILD_CONFIG': 'Release', |
| 1071 'TARGET_BITS': 64, |
| 1072 }, |
| 1073 'bot_type': 'builder_tester', |
| 1074 'testing': {'platform': 'win'}, |
| 1075 }, |
| 1076 'win_dbg': { |
1031 'recipe_config': 'webrtc_parallel', | 1077 'recipe_config': 'webrtc_parallel', |
1032 'chromium_config_kwargs': { | 1078 'chromium_config_kwargs': { |
1033 'BUILD_CONFIG': 'Debug', | 1079 'BUILD_CONFIG': 'Debug', |
1034 'TARGET_BITS': 32, | 1080 'TARGET_BITS': 32, |
1035 }, | 1081 }, |
1036 'bot_type': 'builder_tester', | 1082 'bot_type': 'builder_tester', |
1037 'testing': {'platform': 'win'}, | 1083 'testing': {'platform': 'win'}, |
1038 }, | 1084 }, |
1039 'win_rel': { | 1085 'win_rel': { |
1040 'recipe_config': 'webrtc_parallel', | 1086 'recipe_config': 'webrtc_parallel', |
1041 'chromium_config_kwargs': { | 1087 'chromium_config_kwargs': { |
1042 'BUILD_CONFIG': 'Release', | 1088 'BUILD_CONFIG': 'Release', |
1043 'TARGET_BITS': 32, | 1089 'TARGET_BITS': 32, |
1044 }, | 1090 }, |
1045 'bot_type': 'builder_tester', | 1091 'bot_type': 'builder_tester', |
1046 'testing': {'platform': 'win'}, | 1092 'testing': {'platform': 'win'}, |
1047 }, | 1093 }, |
| 1094 'win_x64_dbg': { |
| 1095 'recipe_config': 'webrtc_parallel', |
| 1096 'chromium_config_kwargs': { |
| 1097 'BUILD_CONFIG': 'Debug', |
| 1098 'TARGET_BITS': 64, |
| 1099 }, |
| 1100 'bot_type': 'builder_tester', |
| 1101 'testing': {'platform': 'win'}, |
| 1102 }, |
1048 'win_x64_rel': { | 1103 'win_x64_rel': { |
1049 'recipe_config': 'webrtc_parallel', | 1104 'recipe_config': 'webrtc_parallel', |
1050 'chromium_config_kwargs': { | 1105 'chromium_config_kwargs': { |
1051 'BUILD_CONFIG': 'Release', | 1106 'BUILD_CONFIG': 'Release', |
1052 'TARGET_BITS': 64, | 1107 'TARGET_BITS': 64, |
1053 }, | 1108 }, |
1054 'bot_type': 'builder_tester', | 1109 'bot_type': 'builder_tester', |
1055 'testing': {'platform': 'win'}, | 1110 'testing': {'platform': 'win'}, |
1056 }, | 1111 }, |
1057 'win_x64_gn': { | 1112 'win_x64_gn': { |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1106 'win_drmemory_full': { | 1161 'win_drmemory_full': { |
1107 'recipe_config': 'webrtc', | 1162 'recipe_config': 'webrtc', |
1108 'chromium_apply_config': ['drmemory_full'], | 1163 'chromium_apply_config': ['drmemory_full'], |
1109 'chromium_config_kwargs': { | 1164 'chromium_config_kwargs': { |
1110 'BUILD_CONFIG': 'Debug', | 1165 'BUILD_CONFIG': 'Debug', |
1111 'TARGET_BITS': 32, | 1166 'TARGET_BITS': 32, |
1112 }, | 1167 }, |
1113 'bot_type': 'builder_tester', | 1168 'bot_type': 'builder_tester', |
1114 'testing': {'platform': 'win'}, | 1169 'testing': {'platform': 'win'}, |
1115 }, | 1170 }, |
1116 'mac': { | 1171 'mac_compile_dbg': { |
| 1172 'recipe_config': 'webrtc_compile', |
| 1173 'chromium_config_kwargs': { |
| 1174 'BUILD_CONFIG': 'Debug', |
| 1175 'TARGET_BITS': 32, |
| 1176 }, |
| 1177 'bot_type': 'builder_tester', |
| 1178 'testing': {'platform': 'mac'}, |
| 1179 }, |
| 1180 'mac_compile_rel': { |
| 1181 'recipe_config': 'webrtc_compile', |
| 1182 'chromium_config_kwargs': { |
| 1183 'BUILD_CONFIG': 'Release', |
| 1184 'TARGET_BITS': 32, |
| 1185 }, |
| 1186 'bot_type': 'builder_tester', |
| 1187 'testing': {'platform': 'mac'}, |
| 1188 }, |
| 1189 'mac_compile_x64_dbg': { |
| 1190 'recipe_config': 'webrtc_compile', |
| 1191 'chromium_config_kwargs': { |
| 1192 'BUILD_CONFIG': 'Debug', |
| 1193 'TARGET_BITS': 64, |
| 1194 }, |
| 1195 'bot_type': 'builder_tester', |
| 1196 'testing': {'platform': 'mac'}, |
| 1197 }, |
| 1198 'mac_compile_x64_rel': { |
| 1199 'recipe_config': 'webrtc_compile', |
| 1200 'chromium_config_kwargs': { |
| 1201 'BUILD_CONFIG': 'Release', |
| 1202 'TARGET_BITS': 64, |
| 1203 }, |
| 1204 'bot_type': 'builder_tester', |
| 1205 'testing': {'platform': 'mac'}, |
| 1206 }, |
| 1207 'mac_dbg': { |
1117 'recipe_config': 'webrtc', | 1208 'recipe_config': 'webrtc', |
1118 'chromium_config_kwargs': { | 1209 'chromium_config_kwargs': { |
1119 'BUILD_CONFIG': 'Debug', | 1210 'BUILD_CONFIG': 'Debug', |
1120 'TARGET_BITS': 32, | 1211 'TARGET_BITS': 32, |
1121 }, | 1212 }, |
1122 'bot_type': 'builder_tester', | 1213 'bot_type': 'builder_tester', |
1123 'testing': {'platform': 'mac'}, | 1214 'testing': {'platform': 'mac'}, |
1124 }, | 1215 }, |
1125 'mac_rel': { | 1216 'mac_rel': { |
1126 'recipe_config': 'webrtc', | 1217 'recipe_config': 'webrtc', |
1127 'chromium_config_kwargs': { | 1218 'chromium_config_kwargs': { |
1128 'BUILD_CONFIG': 'Release', | 1219 'BUILD_CONFIG': 'Release', |
1129 'TARGET_BITS': 32, | 1220 'TARGET_BITS': 32, |
1130 }, | 1221 }, |
1131 'bot_type': 'builder_tester', | 1222 'bot_type': 'builder_tester', |
1132 'testing': {'platform': 'mac'}, | 1223 'testing': {'platform': 'mac'}, |
1133 }, | 1224 }, |
1134 'mac_x64': { | 1225 'mac_x64_dbg': { |
1135 'recipe_config': 'webrtc', | 1226 'recipe_config': 'webrtc', |
1136 'chromium_config_kwargs': { | 1227 'chromium_config_kwargs': { |
1137 'BUILD_CONFIG': 'Debug', | 1228 'BUILD_CONFIG': 'Debug', |
1138 'TARGET_BITS': 64, | 1229 'TARGET_BITS': 64, |
1139 }, | 1230 }, |
1140 'bot_type': 'builder_tester', | 1231 'bot_type': 'builder_tester', |
1141 'testing': {'platform': 'mac'}, | 1232 'testing': {'platform': 'mac'}, |
1142 }, | 1233 }, |
1143 'mac_x64_rel': { | 1234 'mac_x64_rel': { |
1144 'recipe_config': 'webrtc', | 1235 'recipe_config': 'webrtc', |
1145 'chromium_config_kwargs': { | 1236 'chromium_config_kwargs': { |
1146 'BUILD_CONFIG': 'Release', | 1237 'BUILD_CONFIG': 'Release', |
1147 'TARGET_BITS': 64, | 1238 'TARGET_BITS': 64, |
1148 }, | 1239 }, |
1149 'bot_type': 'builder_tester', | 1240 'bot_type': 'builder_tester', |
1150 'testing': {'platform': 'mac'}, | 1241 'testing': {'platform': 'mac'}, |
1151 }, | 1242 }, |
1152 'mac_x64_gn': { | 1243 'mac_x64_gn_dbg': { |
1153 'recipe_config': 'webrtc', | 1244 'recipe_config': 'webrtc', |
1154 'chromium_config_kwargs': { | 1245 'chromium_config_kwargs': { |
1155 'BUILD_CONFIG': 'Debug', | 1246 'BUILD_CONFIG': 'Debug', |
1156 'TARGET_BITS': 64, | 1247 'TARGET_BITS': 64, |
1157 }, | 1248 }, |
1158 'chromium_apply_config': ['webrtc_gn'], | 1249 'chromium_apply_config': ['webrtc_gn'], |
1159 'bot_type': 'builder', | 1250 'bot_type': 'builder', |
1160 'testing': {'platform': 'mac'}, | 1251 'testing': {'platform': 'mac'}, |
1161 }, | 1252 }, |
1162 'mac_x64_gn_rel': { | 1253 'mac_x64_gn_rel': { |
(...skipping 18 matching lines...) Expand all Loading... |
1181 }, | 1272 }, |
1182 'mac_baremetal': { | 1273 'mac_baremetal': { |
1183 'recipe_config': 'webrtc_baremetal', | 1274 'recipe_config': 'webrtc_baremetal', |
1184 'chromium_config_kwargs': { | 1275 'chromium_config_kwargs': { |
1185 'BUILD_CONFIG': 'Release', | 1276 'BUILD_CONFIG': 'Release', |
1186 'TARGET_BITS': 32, | 1277 'TARGET_BITS': 32, |
1187 }, | 1278 }, |
1188 'bot_type': 'builder_tester', | 1279 'bot_type': 'builder_tester', |
1189 'testing': {'platform': 'mac'}, | 1280 'testing': {'platform': 'mac'}, |
1190 }, | 1281 }, |
1191 'ios': { | 1282 'ios_dbg': { |
1192 'recipe_config': 'webrtc_ios', | 1283 'recipe_config': 'webrtc_ios', |
1193 'chromium_config_kwargs': { | 1284 'chromium_config_kwargs': { |
1194 'BUILD_CONFIG': 'Debug', | 1285 'BUILD_CONFIG': 'Debug', |
1195 'TARGET_BITS': 32, | 1286 'TARGET_BITS': 32, |
1196 'TARGET_ARCH': 'arm', | 1287 'TARGET_ARCH': 'arm', |
1197 'TARGET_PLATFORM': 'ios', | 1288 'TARGET_PLATFORM': 'ios', |
1198 }, | 1289 }, |
1199 'bot_type': 'builder', | 1290 'bot_type': 'builder', |
1200 'testing': {'platform': 'mac'}, | 1291 'testing': {'platform': 'mac'}, |
1201 }, | 1292 }, |
1202 'ios_rel': { | 1293 'ios_rel': { |
1203 'recipe_config': 'webrtc_ios', | 1294 'recipe_config': 'webrtc_ios', |
1204 'chromium_config_kwargs': { | 1295 'chromium_config_kwargs': { |
1205 'BUILD_CONFIG': 'Release', | 1296 'BUILD_CONFIG': 'Release', |
1206 'TARGET_BITS': 32, | 1297 'TARGET_BITS': 32, |
1207 'TARGET_ARCH': 'arm', | 1298 'TARGET_ARCH': 'arm', |
1208 'TARGET_PLATFORM': 'ios', | 1299 'TARGET_PLATFORM': 'ios', |
1209 }, | 1300 }, |
1210 'bot_type': 'builder', | 1301 'bot_type': 'builder', |
1211 'testing': {'platform': 'mac'}, | 1302 'testing': {'platform': 'mac'}, |
1212 }, | 1303 }, |
1213 'ios_arm64': { | 1304 'ios_arm64_dbg': { |
1214 'recipe_config': 'webrtc_ios', | 1305 'recipe_config': 'webrtc_ios', |
1215 'chromium_config_kwargs': { | 1306 'chromium_config_kwargs': { |
1216 'BUILD_CONFIG': 'Debug', | 1307 'BUILD_CONFIG': 'Debug', |
1217 'TARGET_BITS': 64, | 1308 'TARGET_BITS': 64, |
1218 'TARGET_ARCH': 'arm', | 1309 'TARGET_ARCH': 'arm', |
1219 'TARGET_PLATFORM': 'ios', | 1310 'TARGET_PLATFORM': 'ios', |
1220 }, | 1311 }, |
1221 'bot_type': 'builder', | 1312 'bot_type': 'builder', |
1222 'testing': {'platform': 'mac'}, | 1313 'testing': {'platform': 'mac'}, |
1223 }, | 1314 }, |
1224 'ios_arm64_rel': { | 1315 'ios_arm64_rel': { |
1225 'recipe_config': 'webrtc_ios', | 1316 'recipe_config': 'webrtc_ios', |
1226 'chromium_config_kwargs': { | 1317 'chromium_config_kwargs': { |
1227 'BUILD_CONFIG': 'Release', | 1318 'BUILD_CONFIG': 'Release', |
1228 'TARGET_BITS': 64, | 1319 'TARGET_BITS': 64, |
1229 'TARGET_ARCH': 'arm', | 1320 'TARGET_ARCH': 'arm', |
1230 'TARGET_PLATFORM': 'ios', | 1321 'TARGET_PLATFORM': 'ios', |
1231 }, | 1322 }, |
1232 'bot_type': 'builder', | 1323 'bot_type': 'builder', |
1233 'testing': {'platform': 'mac'}, | 1324 'testing': {'platform': 'mac'}, |
1234 }, | 1325 }, |
1235 'ios32_sim': { | 1326 'ios32_sim_dbg': { |
1236 'recipe_config': 'webrtc_ios', | 1327 'recipe_config': 'webrtc_ios', |
1237 'chromium_config_kwargs': { | 1328 'chromium_config_kwargs': { |
1238 'BUILD_CONFIG': 'Debug', | 1329 'BUILD_CONFIG': 'Debug', |
1239 'TARGET_BITS': 32, | 1330 'TARGET_BITS': 32, |
1240 'TARGET_ARCH': 'intel', | 1331 'TARGET_ARCH': 'intel', |
1241 'TARGET_PLATFORM': 'ios', | 1332 'TARGET_PLATFORM': 'ios', |
1242 }, | 1333 }, |
1243 'bot_type': 'builder', | 1334 'bot_type': 'builder', |
1244 'testing': {'platform': 'mac'}, | 1335 'testing': {'platform': 'mac'}, |
1245 }, | 1336 }, |
1246 'ios64_sim': { | 1337 'ios64_sim_dbg': { |
1247 'recipe_config': 'webrtc_ios', | 1338 'recipe_config': 'webrtc_ios', |
1248 'chromium_config_kwargs': { | 1339 'chromium_config_kwargs': { |
1249 'BUILD_CONFIG': 'Debug', | 1340 'BUILD_CONFIG': 'Debug', |
1250 'TARGET_BITS': 64, | 1341 'TARGET_BITS': 64, |
1251 'TARGET_ARCH': 'intel', | 1342 'TARGET_ARCH': 'intel', |
1252 'TARGET_PLATFORM': 'ios', | 1343 'TARGET_PLATFORM': 'ios', |
1253 }, | 1344 }, |
1254 'bot_type': 'builder', | 1345 'bot_type': 'builder', |
1255 'testing': {'platform': 'mac'}, | 1346 'testing': {'platform': 'mac'}, |
1256 }, | 1347 }, |
1257 'linux': { | 1348 'linux_compile_dbg': { |
| 1349 'recipe_config': 'webrtc_compile', |
| 1350 'chromium_config_kwargs': { |
| 1351 'BUILD_CONFIG': 'Debug', |
| 1352 'TARGET_BITS': 64, |
| 1353 }, |
| 1354 'bot_type': 'builder_tester', |
| 1355 'testing': {'platform': 'linux'}, |
| 1356 }, |
| 1357 'linux_compile_rel': { |
| 1358 'recipe_config': 'webrtc_compile', |
| 1359 'chromium_config_kwargs': { |
| 1360 'BUILD_CONFIG': 'Release', |
| 1361 'TARGET_BITS': 64, |
| 1362 }, |
| 1363 'bot_type': 'builder_tester', |
| 1364 'testing': {'platform': 'linux'}, |
| 1365 }, |
| 1366 'linux_dbg': { |
1258 'recipe_config': 'webrtc_parallel', | 1367 'recipe_config': 'webrtc_parallel', |
1259 'chromium_config_kwargs': { | 1368 'chromium_config_kwargs': { |
1260 'BUILD_CONFIG': 'Debug', | 1369 'BUILD_CONFIG': 'Debug', |
1261 'TARGET_BITS': 64, | 1370 'TARGET_BITS': 64, |
1262 }, | 1371 }, |
1263 'bot_type': 'builder_tester', | 1372 'bot_type': 'builder_tester', |
1264 'testing': {'platform': 'linux'}, | 1373 'testing': {'platform': 'linux'}, |
1265 }, | 1374 }, |
1266 'linux_rel': { | 1375 'linux_rel': { |
1267 'recipe_config': 'webrtc_parallel', | 1376 'recipe_config': 'webrtc_parallel', |
1268 'chromium_config_kwargs': { | 1377 'chromium_config_kwargs': { |
1269 'BUILD_CONFIG': 'Release', | 1378 'BUILD_CONFIG': 'Release', |
1270 'TARGET_BITS': 64, | 1379 'TARGET_BITS': 64, |
1271 }, | 1380 }, |
1272 'bot_type': 'builder_tester', | 1381 'bot_type': 'builder_tester', |
1273 'testing': {'platform': 'linux'}, | 1382 'testing': {'platform': 'linux'}, |
1274 }, | 1383 }, |
1275 'linux_gn': { | 1384 'linux_gn_dbg': { |
1276 'recipe_config': 'webrtc', | 1385 'recipe_config': 'webrtc', |
1277 'chromium_config_kwargs': { | 1386 'chromium_config_kwargs': { |
1278 'BUILD_CONFIG': 'Debug', | 1387 'BUILD_CONFIG': 'Debug', |
1279 'TARGET_BITS': 64, | 1388 'TARGET_BITS': 64, |
1280 }, | 1389 }, |
1281 'chromium_apply_config': ['webrtc_gn'], | 1390 'chromium_apply_config': ['webrtc_gn'], |
1282 'bot_type': 'builder', | 1391 'bot_type': 'builder', |
1283 'testing': {'platform': 'linux'}, | 1392 'testing': {'platform': 'linux'}, |
1284 }, | 1393 }, |
1285 'linux_gn_rel': { | 1394 'linux_gn_rel': { |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1336 }, | 1445 }, |
1337 'linux_baremetal': { | 1446 'linux_baremetal': { |
1338 'recipe_config': 'webrtc_baremetal', | 1447 'recipe_config': 'webrtc_baremetal', |
1339 'chromium_config_kwargs': { | 1448 'chromium_config_kwargs': { |
1340 'BUILD_CONFIG': 'Release', | 1449 'BUILD_CONFIG': 'Release', |
1341 'TARGET_BITS': 64, | 1450 'TARGET_BITS': 64, |
1342 }, | 1451 }, |
1343 'bot_type': 'builder_tester', | 1452 'bot_type': 'builder_tester', |
1344 'testing': {'platform': 'linux'}, | 1453 'testing': {'platform': 'linux'}, |
1345 }, | 1454 }, |
1346 'android': { | 1455 'android_compile_dbg': { |
| 1456 'recipe_config': 'webrtc_compile_android', |
| 1457 'chromium_config_kwargs': { |
| 1458 'BUILD_CONFIG': 'Debug', |
| 1459 'TARGET_PLATFORM': 'android', |
| 1460 'TARGET_ARCH': 'arm', |
| 1461 'TARGET_BITS': 32, |
| 1462 }, |
| 1463 'bot_type': 'builder_tester', |
| 1464 'testing': {'platform': 'linux'}, |
| 1465 }, |
| 1466 'android_compile_rel': { |
| 1467 'recipe_config': 'webrtc_compile_android', |
| 1468 'chromium_config_kwargs': { |
| 1469 'BUILD_CONFIG': 'Release', |
| 1470 'TARGET_PLATFORM': 'android', |
| 1471 'TARGET_ARCH': 'arm', |
| 1472 'TARGET_BITS': 32, |
| 1473 }, |
| 1474 'bot_type': 'builder_tester', |
| 1475 'testing': {'platform': 'linux'}, |
| 1476 }, |
| 1477 'android_compile_arm64_dbg': { |
| 1478 'recipe_config': 'webrtc_compile_android', |
| 1479 'chromium_config_kwargs': { |
| 1480 'BUILD_CONFIG': 'Debug', |
| 1481 'TARGET_PLATFORM': 'android', |
| 1482 'TARGET_ARCH': 'arm', |
| 1483 'TARGET_BITS': 64, |
| 1484 }, |
| 1485 'bot_type': 'builder_tester', |
| 1486 'testing': {'platform': 'linux'}, |
| 1487 }, |
| 1488 'android_compile_arm64_rel': { |
| 1489 'recipe_config': 'webrtc_compile_android', |
| 1490 'chromium_config_kwargs': { |
| 1491 'BUILD_CONFIG': 'Release', |
| 1492 'TARGET_PLATFORM': 'android', |
| 1493 'TARGET_ARCH': 'arm', |
| 1494 'TARGET_BITS': 64, |
| 1495 }, |
| 1496 'bot_type': 'builder_tester', |
| 1497 'testing': {'platform': 'linux'}, |
| 1498 }, |
| 1499 'android_dbg': { |
1347 'recipe_config': 'webrtc_android', | 1500 'recipe_config': 'webrtc_android', |
1348 'chromium_config_kwargs': { | 1501 'chromium_config_kwargs': { |
1349 'BUILD_CONFIG': 'Debug', | 1502 'BUILD_CONFIG': 'Debug', |
1350 'TARGET_PLATFORM': 'android', | 1503 'TARGET_PLATFORM': 'android', |
1351 'TARGET_ARCH': 'arm', | 1504 'TARGET_ARCH': 'arm', |
1352 'TARGET_BITS': 32, | 1505 'TARGET_BITS': 32, |
1353 }, | 1506 }, |
1354 'bot_type': 'builder_tester', | 1507 'bot_type': 'builder_tester', |
1355 'testing': {'platform': 'linux'}, | 1508 'testing': {'platform': 'linux'}, |
1356 }, | 1509 }, |
1357 'android_rel': { | 1510 'android_rel': { |
1358 'recipe_config': 'webrtc_android', | 1511 'recipe_config': 'webrtc_android', |
1359 'chromium_config_kwargs': { | 1512 'chromium_config_kwargs': { |
1360 'BUILD_CONFIG': 'Release', | 1513 'BUILD_CONFIG': 'Release', |
1361 'TARGET_PLATFORM': 'android', | 1514 'TARGET_PLATFORM': 'android', |
1362 'TARGET_ARCH': 'arm', | 1515 'TARGET_ARCH': 'arm', |
1363 'TARGET_BITS': 32, | 1516 'TARGET_BITS': 32, |
1364 }, | 1517 }, |
1365 'bot_type': 'builder_tester', | 1518 'bot_type': 'builder_tester', |
1366 'testing': {'platform': 'linux'}, | 1519 'testing': {'platform': 'linux'}, |
1367 }, | 1520 }, |
1368 'android_clang': { | 1521 'android_clang_dbg': { |
1369 'recipe_config': 'webrtc_android_clang', | 1522 'recipe_config': 'webrtc_android_clang', |
1370 'chromium_config_kwargs': { | 1523 'chromium_config_kwargs': { |
1371 'BUILD_CONFIG': 'Debug', | 1524 'BUILD_CONFIG': 'Debug', |
1372 'TARGET_PLATFORM': 'android', | 1525 'TARGET_PLATFORM': 'android', |
1373 'TARGET_ARCH': 'arm', | 1526 'TARGET_ARCH': 'arm', |
1374 'TARGET_BITS': 32, | 1527 'TARGET_BITS': 32, |
1375 }, | 1528 }, |
1376 'bot_type': 'builder', | 1529 'bot_type': 'builder', |
1377 'testing': {'platform': 'linux'}, | 1530 'testing': {'platform': 'linux'}, |
1378 }, | 1531 }, |
(...skipping 12 matching lines...) Expand all Loading... |
1391 'recipe_config': 'webrtc_android', | 1544 'recipe_config': 'webrtc_android', |
1392 'chromium_config_kwargs': { | 1545 'chromium_config_kwargs': { |
1393 'BUILD_CONFIG': 'Debug', | 1546 'BUILD_CONFIG': 'Debug', |
1394 'TARGET_PLATFORM': 'android', | 1547 'TARGET_PLATFORM': 'android', |
1395 'TARGET_ARCH': 'arm', | 1548 'TARGET_ARCH': 'arm', |
1396 'TARGET_BITS': 32, | 1549 'TARGET_BITS': 32, |
1397 }, | 1550 }, |
1398 'bot_type': 'builder_tester', | 1551 'bot_type': 'builder_tester', |
1399 'testing': {'platform': 'linux'}, | 1552 'testing': {'platform': 'linux'}, |
1400 }, | 1553 }, |
1401 'android_gn': { | 1554 'android_gn_dbg': { |
1402 'recipe_config': 'webrtc_android', | 1555 'recipe_config': 'webrtc_android', |
1403 'chromium_config_kwargs': { | 1556 'chromium_config_kwargs': { |
1404 'BUILD_CONFIG': 'Debug', | 1557 'BUILD_CONFIG': 'Debug', |
1405 'TARGET_PLATFORM': 'android', | 1558 'TARGET_PLATFORM': 'android', |
1406 'TARGET_ARCH': 'arm', | 1559 'TARGET_ARCH': 'arm', |
1407 'TARGET_BITS': 32, | 1560 'TARGET_BITS': 32, |
1408 }, | 1561 }, |
1409 'chromium_apply_config': ['webrtc_gn'], | 1562 'chromium_apply_config': ['webrtc_gn'], |
1410 'bot_type': 'builder', | 1563 'bot_type': 'builder', |
1411 'testing': {'platform': 'linux'}, | 1564 'testing': {'platform': 'linux'}, |
1412 }, | 1565 }, |
1413 'android_gn_rel': { | 1566 'android_gn_rel': { |
1414 'recipe_config': 'webrtc_android', | 1567 'recipe_config': 'webrtc_android', |
1415 'chromium_config_kwargs': { | 1568 'chromium_config_kwargs': { |
1416 'BUILD_CONFIG': 'Release', | 1569 'BUILD_CONFIG': 'Release', |
1417 'TARGET_PLATFORM': 'android', | 1570 'TARGET_PLATFORM': 'android', |
1418 'TARGET_ARCH': 'arm', | 1571 'TARGET_ARCH': 'arm', |
1419 'TARGET_BITS': 32, | 1572 'TARGET_BITS': 32, |
1420 }, | 1573 }, |
1421 'chromium_apply_config': ['webrtc_gn'], | 1574 'chromium_apply_config': ['webrtc_gn'], |
1422 'bot_type': 'builder', | 1575 'bot_type': 'builder', |
1423 'testing': {'platform': 'linux'}, | 1576 'testing': {'platform': 'linux'}, |
1424 }, | 1577 }, |
1425 }, | 1578 }, |
1426 }, | 1579 }, |
1427 }) | 1580 }) |
1428 | 1581 |
OLD | NEW |