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

Side by Side Diff: tools-webrtc/mb/mb_config.pyl

Issue 2782883002: MB: Make new ARM Debug bots actually build Debug. (Closed)
Patch Set: Created 3 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 # FOR DETAILS ON THIS FILE SEE THE MAIN COPY IN //tools/mb/mb_config.pyl. 9 # FOR DETAILS ON THIS FILE SEE THE MAIN COPY IN //tools/mb/mb_config.pyl.
10 # This is configuration for standalone WebRTC bots. It is used to keep the bot 10 # This is configuration for standalone WebRTC bots. It is used to keep the bot
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 # This is the list of configs that you can pass to mb; each config 184 # This is the list of configs that you can pass to mb; each config
185 # represents a particular combination of gn args that we must support. 185 # represents a particular combination of gn args that we must support.
186 # A given config *may* be platform-specific but is not necessarily so (i.e., 186 # A given config *may* be platform-specific but is not necessarily so (i.e.,
187 # we might have mac, win, and linux bots all using the 'release_bot' config). 187 # we might have mac, win, and linux bots all using the 'release_bot' config).
188 'configs': { 188 'configs': {
189 # Linux, Mac and Windows 189 # Linux, Mac and Windows
190 'gcc_release_bot_x64': [ 190 'gcc_release_bot_x64': [
191 'gn', 'gcc', 'release_bot', 'x64' 191 'gn', 'gcc', 'release_bot', 'x64'
192 ], 192 ],
193 'debug_bot_arm': [ 193 'debug_bot_arm': [
194 'gn', 'openh264_release_bot', 'arm' 194 'gn', 'openh264_debug_bot', 'arm'
195 ], 195 ],
196 'release_bot_arm': [ 196 'release_bot_arm': [
197 'gn', 'openh264_release_bot', 'arm' 197 'gn', 'openh264_release_bot', 'arm'
198 ], 198 ],
199 'debug_bot_arm64': [ 199 'debug_bot_arm64': [
200 'gn', 'openh264_release_bot', 'arm64' 200 'gn', 'openh264_debug_bot', 'arm64'
201 ], 201 ],
202 'release_bot_arm64': [ 202 'release_bot_arm64': [
203 'gn', 'openh264_release_bot', 'arm64' 203 'gn', 'openh264_release_bot', 'arm64'
204 ], 204 ],
205 'asan_lsan_clang_release_bot_x64': [ 205 'asan_lsan_clang_release_bot_x64': [
206 'gn', 'asan', 'lsan', 'clang', 'openh264_release_bot', 'x64' 206 'gn', 'asan', 'lsan', 'clang', 'openh264_release_bot', 'x64'
207 ], 207 ],
208 'msan_clang_release_bot_x64': [ 208 'msan_clang_release_bot_x64': [
209 'gn', 'msan', 'clang', 'openh264_release_bot', 'x64' 209 'gn', 'msan', 'clang', 'openh264_release_bot', 'x64'
210 ], 210 ],
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 451
452 'x64': { 452 'x64': {
453 'gn_args': 'target_cpu="x64"', 453 'gn_args': 'target_cpu="x64"',
454 }, 454 },
455 455
456 'x86': { 456 'x86': {
457 'gn_args': 'target_cpu="x86"', 457 'gn_args': 'target_cpu="x86"',
458 }, 458 },
459 }, 459 },
460 } 460 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698