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 782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
793 'builders': { | 793 'builders': { |
794 'Linux64 Debug (parallel)': { | 794 'Linux64 Debug (parallel)': { |
795 'recipe_config': 'webrtc_parallel', | 795 'recipe_config': 'webrtc_parallel', |
796 'webrtc_config_kwargs': { | 796 'webrtc_config_kwargs': { |
797 'BUILD_CONFIG': 'Debug', | 797 'BUILD_CONFIG': 'Debug', |
798 'TARGET_BITS': 64, | 798 'TARGET_BITS': 64, |
799 }, | 799 }, |
800 'bot_type': 'builder_tester', | 800 'bot_type': 'builder_tester', |
801 'testing': {'platform': 'linux'}, | 801 'testing': {'platform': 'linux'}, |
802 }, | 802 }, |
803 }, | 803 'Linux MSan': { |
| 804 'recipe_config': 'webrtc_clang', |
| 805 'chromium_apply_config': ['msan', 'instrumented_libraries'], |
| 806 'webrtc_config_kwargs': { |
| 807 'BUILD_CONFIG': 'Release', |
| 808 'TARGET_BITS': 64, |
| 809 }, |
| 810 'bot_type': 'builder_tester', |
| 811 'testing': {'platform': 'linux'}, |
| 812 }, |
| 813 }, |
804 }, | 814 }, |
805 'tryserver.webrtc': { | 815 'tryserver.webrtc': { |
806 'builders': { | 816 'builders': { |
807 'win': { | 817 'win': { |
808 'recipe_config': 'webrtc', | 818 'recipe_config': 'webrtc', |
809 'webrtc_config_kwargs': { | 819 'webrtc_config_kwargs': { |
810 'BUILD_CONFIG': 'Debug', | 820 'BUILD_CONFIG': 'Debug', |
811 'TARGET_BITS': 32, | 821 'TARGET_BITS': 32, |
812 }, | 822 }, |
813 'bot_type': 'builder_tester', | 823 'bot_type': 'builder_tester', |
(...skipping 267 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 |