Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(196)

Side by Side Diff: scripts/slave/recipe_modules/webrtc/builders.py

Issue 2430193003: WebRTC: Remove Dr Memory bots. (Closed)
Patch Set: Addressed comments. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 'chromium_config_kwargs': { 161 'chromium_config_kwargs': {
162 'BUILD_CONFIG': 'Release', 162 'BUILD_CONFIG': 'Release',
163 'TARGET_BITS': 32, 163 'TARGET_BITS': 32,
164 }, 164 },
165 'webrtc_config_kwargs': { 165 'webrtc_config_kwargs': {
166 'PERF_ID': 'webrtc-win-large-tests', 166 'PERF_ID': 'webrtc-win-large-tests',
167 }, 167 },
168 'bot_type': 'builder_tester', 168 'bot_type': 'builder_tester',
169 'testing': {'platform': 'win'}, 169 'testing': {'platform': 'win'},
170 }, 170 },
171 'Win DrMemory Full': {
172 'recipe_config': 'webrtc',
173 'chromium_apply_config': ['drmemory_full'],
174 'chromium_config_kwargs': {
175 'BUILD_CONFIG': 'Debug',
176 'TARGET_BITS': 32,
177 },
178 'bot_type': 'builder_tester',
179 'testing': {'platform': 'win'},
180 },
181 'Win DrMemory Light': {
182 'recipe_config': 'webrtc',
183 'chromium_apply_config': ['drmemory_light'],
184 'chromium_config_kwargs': {
185 'BUILD_CONFIG': 'Debug',
186 'TARGET_BITS': 32,
187 },
188 'bot_type': 'builder_tester',
189 'testing': {'platform': 'win'},
190 },
191 'Win SyzyASan': { 171 'Win SyzyASan': {
192 'recipe_config': 'webrtc', 172 'recipe_config': 'webrtc',
193 'chromium_apply_config': ['syzyasan'], 173 'chromium_apply_config': ['syzyasan'],
194 'chromium_config_kwargs': { 174 'chromium_config_kwargs': {
195 'BUILD_CONFIG': 'Release', 175 'BUILD_CONFIG': 'Release',
196 'TARGET_BITS': 32, 176 'TARGET_BITS': 32,
197 }, 177 },
198 'bot_type': 'builder_tester', 178 'bot_type': 'builder_tester',
199 'testing': {'platform': 'win'}, 179 'testing': {'platform': 'win'},
200 }, 180 },
(...skipping 726 matching lines...) Expand 10 before | Expand all | Expand 10 after
927 'win_asan': { 907 'win_asan': {
928 'recipe_config': 'webrtc', 908 'recipe_config': 'webrtc',
929 'chromium_apply_config': ['syzyasan'], 909 'chromium_apply_config': ['syzyasan'],
930 'chromium_config_kwargs': { 910 'chromium_config_kwargs': {
931 'BUILD_CONFIG': 'Release', 911 'BUILD_CONFIG': 'Release',
932 'TARGET_BITS': 32, 912 'TARGET_BITS': 32,
933 }, 913 },
934 'bot_type': 'builder_tester', 914 'bot_type': 'builder_tester',
935 'testing': {'platform': 'win'}, 915 'testing': {'platform': 'win'},
936 }, 916 },
937 'win_drmemory_light': {
938 'recipe_config': 'webrtc',
939 'chromium_apply_config': ['drmemory_light'],
940 'chromium_config_kwargs': {
941 'BUILD_CONFIG': 'Debug',
942 'TARGET_BITS': 32,
943 },
944 'bot_type': 'builder_tester',
945 'testing': {'platform': 'win'},
946 },
947 'win_drmemory_full': {
948 'recipe_config': 'webrtc',
949 'chromium_apply_config': ['drmemory_full'],
950 'chromium_config_kwargs': {
951 'BUILD_CONFIG': 'Debug',
952 'TARGET_BITS': 32,
953 },
954 'bot_type': 'builder_tester',
955 'testing': {'platform': 'win'},
956 },
957 'win_swarming': { 917 'win_swarming': {
958 'recipe_config': 'webrtc', 918 'recipe_config': 'webrtc',
959 'chromium_config_kwargs': { 919 'chromium_config_kwargs': {
960 'BUILD_CONFIG': 'Debug', 920 'BUILD_CONFIG': 'Debug',
961 'TARGET_BITS': 32, 921 'TARGET_BITS': 32,
962 }, 922 },
963 'bot_type': 'builder_tester', 923 'bot_type': 'builder_tester',
964 'testing': {'platform': 'win'}, 924 'testing': {'platform': 'win'},
965 'use_isolate': True, 925 'use_isolate': True,
966 'enable_swarming': True, 926 'enable_swarming': True,
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after
1385 'TARGET_ARCH': 'arm', 1345 'TARGET_ARCH': 'arm',
1386 'TARGET_BITS': 32, 1346 'TARGET_BITS': 32,
1387 }, 1347 },
1388 'bot_type': 'builder', 1348 'bot_type': 'builder',
1389 'testing': {'platform': 'linux'}, 1349 'testing': {'platform': 'linux'},
1390 }, 1350 },
1391 }, 1351 },
1392 }, 1352 },
1393 }) 1353 })
1394 1354
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698