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({ |
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
246 'chromium_config_kwargs': { | 246 'chromium_config_kwargs': { |
247 'BUILD_CONFIG': 'Release', | 247 'BUILD_CONFIG': 'Release', |
248 'TARGET_BITS': 64, | 248 'TARGET_BITS': 64, |
249 }, | 249 }, |
250 'webrtc_config_kwargs': { | 250 'webrtc_config_kwargs': { |
251 'PERF_ID': 'webrtc-mac-large-tests', | 251 'PERF_ID': 'webrtc-mac-large-tests', |
252 }, | 252 }, |
253 'bot_type': 'builder_tester', | 253 'bot_type': 'builder_tester', |
254 'testing': {'platform': 'mac'}, | 254 'testing': {'platform': 'mac'}, |
255 }, | 255 }, |
256 'Linux32 Debug': { | |
257 'recipe_config': 'webrtc', | |
258 'chromium_config_kwargs': { | |
259 'BUILD_CONFIG': 'Debug', | |
260 'TARGET_BITS': 32, | |
261 }, | |
262 'bot_type': 'builder_tester', | |
263 'testing': {'platform': 'linux'}, | |
264 }, | |
265 'Linux32 Release': { | |
266 'recipe_config': 'webrtc', | |
267 'chromium_config_kwargs': { | |
268 'BUILD_CONFIG': 'Release', | |
269 'TARGET_BITS': 32, | |
270 }, | |
271 'bot_type': 'builder_tester', | |
272 'testing': {'platform': 'linux'}, | |
273 }, | |
274 'Linux64 Debug': { | 256 'Linux64 Debug': { |
275 'recipe_config': 'webrtc', | 257 'recipe_config': 'webrtc', |
276 'chromium_config_kwargs': { | 258 'chromium_config_kwargs': { |
277 'BUILD_CONFIG': 'Debug', | 259 'BUILD_CONFIG': 'Debug', |
278 'TARGET_BITS': 64, | 260 'TARGET_BITS': 64, |
279 }, | 261 }, |
280 'bot_type': 'builder_tester', | 262 'bot_type': 'builder_tester', |
281 'testing': {'platform': 'linux'}, | 263 'testing': {'platform': 'linux'}, |
282 }, | 264 }, |
283 'Linux64 Release': { | 265 'Linux64 Release': { |
(...skipping 1013 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1297 'TARGET_BITS': 32, | 1279 'TARGET_BITS': 32, |
1298 }, | 1280 }, |
1299 'chromium_apply_config': ['webrtc_gn'], | 1281 'chromium_apply_config': ['webrtc_gn'], |
1300 'bot_type': 'builder', | 1282 'bot_type': 'builder', |
1301 'testing': {'platform': 'linux'}, | 1283 'testing': {'platform': 'linux'}, |
1302 }, | 1284 }, |
1303 }, | 1285 }, |
1304 }, | 1286 }, |
1305 }) | 1287 }) |
1306 | 1288 |
OLD | NEW |