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

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

Issue 2908143002: Reland of Disable Goma for Linux32 (ARM) bots. (Closed)
Patch Set: Created 3 years, 6 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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 194
195 # This is the list of configs that you can pass to mb; each config 195 # This is the list of configs that you can pass to mb; each config
196 # represents a particular combination of gn args that we must support. 196 # represents a particular combination of gn args that we must support.
197 # A given config *may* be platform-specific but is not necessarily so (i.e., 197 # A given config *may* be platform-specific but is not necessarily so (i.e.,
198 # we might have mac, win, and linux bots all using the 'release_bot' config). 198 # we might have mac, win, and linux bots all using the 'release_bot' config).
199 'configs': { 199 'configs': {
200 # Linux, Mac and Windows 200 # Linux, Mac and Windows
201 'gcc_release_bot_x64': [ 201 'gcc_release_bot_x64': [
202 'gn', 'gcc', 'release_bot', 'x64' 202 'gn', 'gcc', 'release_bot', 'x64'
203 ], 203 ],
204 # TOOD(kjellander): Restore Goma for this when crbug.com/726706 is fixed.
204 'debug_bot_arm': [ 205 'debug_bot_arm': [
205 'gn', 'openh264_debug_bot', 'arm' 206 'gn', 'openh264', 'debug', 'arm'
206 ], 207 ],
207 'release_bot_arm': [ 208 'release_bot_arm': [
208 'gn', 'openh264_release_bot', 'arm' 209 'gn', 'openh264_release_bot', 'arm'
209 ], 210 ],
210 'debug_bot_arm64': [ 211 'debug_bot_arm64': [
211 'gn', 'openh264_debug_bot', 'arm64' 212 'gn', 'openh264_debug_bot', 'arm64'
212 ], 213 ],
213 'release_bot_arm64': [ 214 'release_bot_arm64': [
214 'gn', 'openh264_release_bot', 'arm64' 215 'gn', 'openh264_release_bot', 'arm64'
215 ], 216 ],
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
464 465
465 'x64': { 466 'x64': {
466 'gn_args': 'target_cpu="x64"', 467 'gn_args': 'target_cpu="x64"',
467 }, 468 },
468 469
469 'x86': { 470 'x86': {
470 'gn_args': 'target_cpu="x86"', 471 'gn_args': 'target_cpu="x86"',
471 }, 472 },
472 }, 473 },
473 } 474 }
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