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

Side by Side Diff: webrtc/build/mb_config.pyl

Issue 1736513003: MB: Fix typo in device mixin. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 10 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 48
49 'debug': { 49 'debug': {
50 'gn_args': 'is_debug=true', 50 'gn_args': 'is_debug=true',
51 }, 51 },
52 52
53 'debug_bot': { 53 'debug_bot': {
54 'mixins': ['debug', 'shared', 'goma'], 54 'mixins': ['debug', 'shared', 'goma'],
55 }, 55 },
56 56
57 'device': { 57 'device': {
58 'gn': 'ios_enable_code_signing=false', 58 'gn_args': 'ios_enable_code_signing=false',
59 'gyp_defines': 'chromium_ios_signing=0', 59 'gyp_defines': 'chromium_ios_signing=0',
60 }, 60 },
61 61
62 'gn': {'type': 'gn'}, 62 'gn': {'type': 'gn'},
63 63
64 'goma': { 64 'goma': {
65 # The MB code will properly escape goma_dir if necessary in the GYP 65 # The MB code will properly escape goma_dir if necessary in the GYP
66 # code path; the GN code path needs no escaping. 66 # code path; the GN code path needs no escaping.
67 'gn_args': 'use_goma=true goma_dir="$(goma_dir)"', 67 'gn_args': 'use_goma=true goma_dir="$(goma_dir)"',
68 'gyp_defines': 'use_goma=1 gomadir=$(goma_dir)', 68 'gyp_defines': 'use_goma=1 gomadir=$(goma_dir)',
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 'ios64_gn_rel': 'ios_gn_release_bot_arm64_device', 128 'ios64_gn_rel': 'ios_gn_release_bot_arm64_device',
129 }, 129 },
130 }, 130 },
131 131
132 # These lists are assumed to exist so we need them in order to be able to run 132 # These lists are assumed to exist so we need them in order to be able to run
133 # the mb.py script in PRESUBMIT.py to verify our config is sane. 133 # the mb.py script in PRESUBMIT.py to verify our config is sane.
134 'common_dev_configs': [], 134 'common_dev_configs': [],
135 'private_configs': [], 135 'private_configs': [],
136 'unsupported_configs': [], 136 'unsupported_configs': [],
137 } 137 }
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