| 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 infra.libs.infra_types import freeze | 8 from infra.libs.infra_types import freeze |
| 9 | 9 |
| 10 RECIPE_CONFIGS = freeze({ | 10 RECIPE_CONFIGS = freeze({ |
| (...skipping 1007 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1018 'Linux Asan (parallel)': { | 1018 'Linux Asan (parallel)': { |
| 1019 'recipe_config': 'webrtc_parallel_clang', | 1019 'recipe_config': 'webrtc_parallel_clang', |
| 1020 'chromium_apply_config': ['asan', 'lsan'], | 1020 'chromium_apply_config': ['asan', 'lsan'], |
| 1021 'chromium_config_kwargs': { | 1021 'chromium_config_kwargs': { |
| 1022 'BUILD_CONFIG': 'Release', | 1022 'BUILD_CONFIG': 'Release', |
| 1023 'TARGET_BITS': 64, | 1023 'TARGET_BITS': 64, |
| 1024 }, | 1024 }, |
| 1025 'bot_type': 'builder_tester', | 1025 'bot_type': 'builder_tester', |
| 1026 'testing': {'platform': 'linux'}, | 1026 'testing': {'platform': 'linux'}, |
| 1027 }, | 1027 }, |
| 1028 'Linux Tsan v2 (with deadlock detection)': { | |
| 1029 'recipe_config': 'webrtc_clang', | |
| 1030 'chromium_apply_config': ['tsan2'], | |
| 1031 'chromium_config_kwargs': { | |
| 1032 'BUILD_CONFIG': 'Release', | |
| 1033 'TARGET_BITS': 64, | |
| 1034 }, | |
| 1035 'bot_type': 'builder_tester', | |
| 1036 'testing': {'platform': 'linux'}, | |
| 1037 }, | |
| 1038 'Android Builder (dbg)': { | 1028 'Android Builder (dbg)': { |
| 1039 'recipe_config': 'webrtc_android', | 1029 'recipe_config': 'webrtc_android', |
| 1040 'chromium_config_kwargs': { | 1030 'chromium_config_kwargs': { |
| 1041 'BUILD_CONFIG': 'Debug', | 1031 'BUILD_CONFIG': 'Debug', |
| 1042 'TARGET_PLATFORM': 'android', | 1032 'TARGET_PLATFORM': 'android', |
| 1043 'TARGET_ARCH': 'arm', | 1033 'TARGET_ARCH': 'arm', |
| 1044 'TARGET_BITS': 32, | 1034 'TARGET_BITS': 32, |
| 1045 }, | 1035 }, |
| 1046 'bot_type': 'builder', | 1036 'bot_type': 'builder', |
| 1047 'build_gs_archive': 'fyi_android_apk_dbg_archive', | 1037 'build_gs_archive': 'fyi_android_apk_dbg_archive', |
| (...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1444 'TARGET_BITS': 32, | 1434 'TARGET_BITS': 32, |
| 1445 }, | 1435 }, |
| 1446 'chromium_apply_config': ['webrtc_gn'], | 1436 'chromium_apply_config': ['webrtc_gn'], |
| 1447 'bot_type': 'builder', | 1437 'bot_type': 'builder', |
| 1448 'testing': {'platform': 'linux'}, | 1438 'testing': {'platform': 'linux'}, |
| 1449 }, | 1439 }, |
| 1450 }, | 1440 }, |
| 1451 }, | 1441 }, |
| 1452 }) | 1442 }) |
| 1453 | 1443 |
| OLD | NEW |