| 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 991 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1002 }, | 1002 }, |
| 1003 'linux_rel': { | 1003 'linux_rel': { |
| 1004 'recipe_config': 'webrtc', | 1004 'recipe_config': 'webrtc', |
| 1005 'chromium_config_kwargs': { | 1005 'chromium_config_kwargs': { |
| 1006 'BUILD_CONFIG': 'Release', | 1006 'BUILD_CONFIG': 'Release', |
| 1007 'TARGET_BITS': 64, | 1007 'TARGET_BITS': 64, |
| 1008 }, | 1008 }, |
| 1009 'bot_type': 'builder_tester', | 1009 'bot_type': 'builder_tester', |
| 1010 'testing': {'platform': 'linux'}, | 1010 'testing': {'platform': 'linux'}, |
| 1011 }, | 1011 }, |
| 1012 'linux32_dbg': { |
| 1013 'recipe_config': 'webrtc', |
| 1014 'chromium_config_kwargs': { |
| 1015 'BUILD_CONFIG': 'Debug', |
| 1016 'TARGET_BITS': 32, |
| 1017 }, |
| 1018 'bot_type': 'builder_tester', |
| 1019 'testing': {'platform': 'linux'}, |
| 1020 }, |
| 1021 'linux32_rel': { |
| 1022 'recipe_config': 'webrtc', |
| 1023 'chromium_config_kwargs': { |
| 1024 'BUILD_CONFIG': 'Release', |
| 1025 'TARGET_BITS': 32, |
| 1026 }, |
| 1027 'bot_type': 'builder_tester', |
| 1028 'testing': {'platform': 'linux'}, |
| 1029 }, |
| 1012 'linux_gyp_dbg': { | 1030 'linux_gyp_dbg': { |
| 1013 'recipe_config': 'webrtc', | 1031 'recipe_config': 'webrtc', |
| 1014 'chromium_config_kwargs': { | 1032 'chromium_config_kwargs': { |
| 1015 'BUILD_CONFIG': 'Debug', | 1033 'BUILD_CONFIG': 'Debug', |
| 1016 'TARGET_BITS': 64, | 1034 'TARGET_BITS': 64, |
| 1017 }, | 1035 }, |
| 1018 'bot_type': 'builder', | 1036 'bot_type': 'builder', |
| 1019 'testing': {'platform': 'linux'}, | 1037 'testing': {'platform': 'linux'}, |
| 1020 }, | 1038 }, |
| 1021 'linux_gyp_rel': { | 1039 'linux_gyp_rel': { |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1281 'TARGET_ARCH': 'arm', | 1299 'TARGET_ARCH': 'arm', |
| 1282 'TARGET_BITS': 32, | 1300 'TARGET_BITS': 32, |
| 1283 }, | 1301 }, |
| 1284 'bot_type': 'builder', | 1302 'bot_type': 'builder', |
| 1285 'testing': {'platform': 'linux'}, | 1303 'testing': {'platform': 'linux'}, |
| 1286 }, | 1304 }, |
| 1287 }, | 1305 }, |
| 1288 }, | 1306 }, |
| 1289 }) | 1307 }) |
| 1290 | 1308 |
| OLD | NEW |