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

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

Issue 2045583002: iOS: Disable Goma for iOS GN bots. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 'arm64': { 44 'arm64': {
45 'gn_args': 'target_cpu="arm64"', 45 'gn_args': 'target_cpu="arm64"',
46 'gyp_defines': 'target_arch=arm64', 46 'gyp_defines': 'target_arch=arm64',
47 }, 47 },
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'],
55 }, 55 },
56 56
57 'device': { 57 'device': {
58 'gn_args': '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': {
65 # The MB code will properly escape goma_dir if necessary in the GYP
66 # code path; the GN code path needs no escaping.
67 'gn_args': 'use_goma=true goma_dir="$(goma_dir)"',
68 'gyp_defines': 'use_goma=1 gomadir=$(goma_dir)',
69 },
70
71 'gyp': {'type': 'gyp'}, 64 'gyp': {'type': 'gyp'},
72 65
73 'release': { 66 'release': {
74 'gn_args': 'is_debug=false', 67 'gn_args': 'is_debug=false',
75 }, 68 },
76 69
77 'release_bot': { 70 'release_bot': {
78 'mixins': ['release', 'static', 'goma'], 71 'mixins': ['release', 'static'],
79 }, 72 },
80 73
81 'shared': { 74 'shared': {
82 'gn_args': 'is_component_build=true', 75 'gn_args': 'is_component_build=true',
83 'gyp_defines': 'component=shared_library', 76 'gyp_defines': 'component=shared_library',
84 }, 77 },
85 78
86 'static': { 79 'static': {
87 'gn_args': 'is_component_build=false', 80 'gn_args': 'is_component_build=false',
88 'gyp_defines': 'component=static_library', 81 'gyp_defines': 'component=static_library',
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 'ios_rel': 'ios_gyp_release_bot_arm_device', 113 'ios_rel': 'ios_gyp_release_bot_arm_device',
121 'ios_arm64_dbg': 'ios_gyp_debug_bot_arm64_device', 114 'ios_arm64_dbg': 'ios_gyp_debug_bot_arm64_device',
122 'ios_arm64_rel': 'ios_gyp_release_bot_arm64_device', 115 'ios_arm64_rel': 'ios_gyp_release_bot_arm64_device',
123 'ios32_sim_dbg': 'ios_gyp_debug_bot_x86', 116 'ios32_sim_dbg': 'ios_gyp_debug_bot_x86',
124 'ios64_sim_dbg': 'ios_gyp_debug_bot_x64', 117 'ios64_sim_dbg': 'ios_gyp_debug_bot_x64',
125 'ios64_gn_dbg': 'ios_gn_debug_bot_arm64_device', 118 'ios64_gn_dbg': 'ios_gn_debug_bot_arm64_device',
126 'ios64_gn_rel': 'ios_gn_release_bot_arm64_device', 119 'ios64_gn_rel': 'ios_gn_release_bot_arm64_device',
127 }, 120 },
128 }, 121 },
129 } 122 }
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