| 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 RECIPE_CONFIGS = { | 8 RECIPE_CONFIGS = { |
| 9 'webrtc': { | 9 'webrtc': { |
| 10 'webrtc_config': 'webrtc', | 10 'webrtc_config': 'webrtc', |
| (...skipping 784 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 795 'builders': { | 795 'builders': { |
| 796 'Linux64 Debug (parallel)': { | 796 'Linux64 Debug (parallel)': { |
| 797 'recipe_config': 'webrtc_parallel', | 797 'recipe_config': 'webrtc_parallel', |
| 798 'webrtc_config_kwargs': { | 798 'webrtc_config_kwargs': { |
| 799 'BUILD_CONFIG': 'Debug', | 799 'BUILD_CONFIG': 'Debug', |
| 800 'TARGET_BITS': 64, | 800 'TARGET_BITS': 64, |
| 801 }, | 801 }, |
| 802 'bot_type': 'builder_tester', | 802 'bot_type': 'builder_tester', |
| 803 'testing': {'platform': 'linux'}, | 803 'testing': {'platform': 'linux'}, |
| 804 }, | 804 }, |
| 805 }, | 805 'Linux MSan': { |
| 806 'recipe_config': 'webrtc_clang', |
| 807 'chromium_apply_config': ['msan'], |
| 808 'webrtc_config_kwargs': { |
| 809 'BUILD_CONFIG': 'Release', |
| 810 'TARGET_BITS': 64, |
| 811 }, |
| 812 'bot_type': 'builder_tester', |
| 813 'testing': {'platform': 'linux'}, |
| 814 }, |
| 815 }, |
| 806 }, | 816 }, |
| 807 'tryserver.webrtc': { | 817 'tryserver.webrtc': { |
| 808 'builders': { | 818 'builders': { |
| 809 'win': { | 819 'win': { |
| 810 'recipe_config': 'webrtc', | 820 'recipe_config': 'webrtc', |
| 811 'webrtc_config_kwargs': { | 821 'webrtc_config_kwargs': { |
| 812 'BUILD_CONFIG': 'Debug', | 822 'BUILD_CONFIG': 'Debug', |
| 813 'TARGET_BITS': 32, | 823 'TARGET_BITS': 32, |
| 814 }, | 824 }, |
| 815 'bot_type': 'builder_tester', | 825 'bot_type': 'builder_tester', |
| (...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1081 'TARGET_BITS': 32, | 1091 'TARGET_BITS': 32, |
| 1082 }, | 1092 }, |
| 1083 'chromium_apply_config': ['webrtc_gn'], | 1093 'chromium_apply_config': ['webrtc_gn'], |
| 1084 'bot_type': 'builder', | 1094 'bot_type': 'builder', |
| 1085 'testing': {'platform': 'linux'}, | 1095 'testing': {'platform': 'linux'}, |
| 1086 }, | 1096 }, |
| 1087 }, | 1097 }, |
| 1088 }, | 1098 }, |
| 1089 } | 1099 } |
| 1090 | 1100 |
| OLD | NEW |