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

Side by Side Diff: tools_webrtc/mb/mb_config.pyl

Issue 2981893002: [Webrtc] Reenable libc++ on gcc (Closed)
Patch Set: revert DEPS change Created 3 years, 5 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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 } 193 }
194 }, 194 },
195 195
196 # This is the list of configs that you can pass to mb; each config 196 # This is the list of configs that you can pass to mb; each config
197 # represents a particular combination of gn args that we must support. 197 # represents a particular combination of gn args that we must support.
198 # A given config *may* be platform-specific but is not necessarily so (i.e., 198 # A given config *may* be platform-specific but is not necessarily so (i.e.,
199 # we might have mac, win, and linux bots all using the 'release_bot' config). 199 # we might have mac, win, and linux bots all using the 'release_bot' config).
200 'configs': { 200 'configs': {
201 # Linux, Mac and Windows 201 # Linux, Mac and Windows
202 'gcc_release_bot_x64': [ 202 'gcc_release_bot_x64': [
203 'gn', 'gcc', 'release_bot', 'x64', 'no_rtc_tests', 'use_default_libcxx' 203 'gn', 'gcc', 'release_bot', 'x64', 'no_rtc_tests'
204 ], 204 ],
205 # TOOD(kjellander): Restore Goma for this when crbug.com/726706 is fixed. 205 # TOOD(kjellander): Restore Goma for this when crbug.com/726706 is fixed.
206 'debug_bot_arm': [ 206 'debug_bot_arm': [
207 'gn', 'openh264', 'debug', 'arm' 207 'gn', 'openh264', 'debug', 'arm'
208 ], 208 ],
209 'release_bot_arm': [ 209 'release_bot_arm': [
210 'gn', 'openh264_release_bot', 'arm' 210 'gn', 'openh264_release_bot', 'arm'
211 ], 211 ],
212 'debug_bot_arm64': [ 212 'debug_bot_arm64': [
213 'gn', 'openh264_debug_bot', 'arm64' 213 'gn', 'openh264_debug_bot', 'arm64'
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 472
473 'x86': { 473 'x86': {
474 'gn_args': 'target_cpu="x86"', 474 'gn_args': 'target_cpu="x86"',
475 }, 475 },
476 476
477 'use_default_libcxx': { 477 'use_default_libcxx': {
478 'gn_args': 'use_custom_libcxx=false', 478 'gn_args': 'use_custom_libcxx=false',
479 } 479 }
480 }, 480 },
481 } 481 }
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