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

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

Issue 2276903002: Make dependency of audio_device of ApplicationServices explicit. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Test with gn bots for real. Created 4 years, 3 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 | webrtc/modules/audio_device/BUILD.gn » ('j') | 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
11 # configurations source-side instead of in the buildbot scripts. That makes it 11 # configurations source-side instead of in the buildbot scripts. That makes it
12 # easy to try different configurations of GYP and GN in tryjob patches. 12 # easy to try different configurations of GYP and GN in tryjob patches.
13 13
14 { 14 {
15 # This is a map of buildbot master names -> buildbot builder names -> 15 # This is a map of buildbot master names -> buildbot builder names ->
16 # config names (where each config name is a key in the 'configs' dict, 16 # config names (where each config name is a key in the 'configs' dict,
17 # above). mb uses this dict to look up which config to use for a given bot. 17 # above). mb uses this dict to look up which config to use for a given bot.
18 # The builders should be sorted by the order they appear in the /builders 18 # The builders should be sorted by the order they appear in the /builders
19 # page on the buildbots, *not* alphabetically. 19 # page on the buildbots, *not* alphabetically.
20 'masters': { 20 'masters': {
21 'client.webrtc': { 21 'client.webrtc': {
22 # iOS 22 # iOS
23 'iOS32 Debug': 'ios_gyp_debug_static_bot_arm_device', 23 'iOS32 Debug': 'ios_gn_debug_static_bot_arm_device',
24 'iOS32 Release': 'ios_gyp_release_bot_arm_device', 24 'iOS32 Release': 'ios_gn_release_bot_arm_device',
25 'iOS64 Debug': 'ios_gyp_debug_static_bot_arm64_device', 25 'iOS64 Debug': 'ios_gn_debug_static_bot_arm64_device',
26 'iOS64 Release': 'ios_gyp_release_bot_arm64_device', 26 'iOS64 Release': 'ios_gn_release_bot_arm64_device',
27 'iOS32 Simulator Debug': 'ios_gyp_debug_static_bot_x86', 27 'iOS32 Simulator Debug': 'ios_gn_debug_static_bot_x86',
28 'iOS64 Simulator Debug': 'ios_gyp_debug_static_bot_x64', 28 'iOS64 Simulator Debug': 'ios_gn_debug_static_bot_x64',
29 'iOS64 Debug (GN)': 'ios_gn_debug_static_bot_arm64_device', 29 'iOS64 Debug (GN)': 'ios_gn_debug_static_bot_arm64_device',
30 'iOS64 Release (GN)': 'ios_gn_release_bot_arm64_device', 30 'iOS64 Release (GN)': 'ios_gn_release_bot_arm64_device',
31 31
32 # Mac 32 # Mac
33 'Mac64 Debug': 'gyp_debug_bot_x64', 33 'Mac64 Debug': 'gn_debug_bot_x64',
34 'Mac64 Release': 'gyp_release_bot_x64', 34 'Mac64 Release': 'gn_release_bot_x64',
35 'Mac64 Debug (GN)': 'gn_debug_bot_x64', 35 'Mac64 Debug (GN)': 'gn_debug_bot_x64',
36 'Mac64 Release (GN)': 'gn_release_bot_x64', 36 'Mac64 Release (GN)': 'gn_release_bot_x64',
37 'Mac Asan': 'mac_gyp_asan_clang_release_bot_x64', 37 'Mac Asan': 'mac_gn_asan_clang_release_bot_x64',
38 'Mac64 Release [large tests]': 'gyp_release_bot_x64', 38 'Mac64 Release [large tests]': 'gn_release_bot_x64',
39 39
40 # Linux 40 # Linux
41 'Linux32 ARM': 'gyp_crosscompile_release_bot_arm', 41 'Linux32 ARM': 'gn_crosscompile_release_bot_arm',
42 'Linux32 Debug': 'gyp_debug_bot_x86', 42 'Linux32 Debug': 'gn_debug_bot_x86',
43 'Linux32 Release': 'gyp_release_bot_x86', 43 'Linux32 Release': 'gn_release_bot_x86',
44 'Linux64 Debug': 'gyp_debug_bot_x64', 44 'Linux64 Debug': 'gn_debug_bot_x64',
45 'Linux64 Release': 'gyp_release_bot_x64', 45 'Linux64 Release': 'gn_release_bot_x64',
46 'Linux Asan': 'gyp_asan_lsan_clang_release_bot_x64', 46 'Linux Asan': 'gn_asan_lsan_clang_release_bot_x64',
47 'Linux Memcheck': 'gyp_memcheck_release_bot_x64', 47 'Linux Memcheck': 'gn_memcheck_release_bot_x64',
48 'Linux MSan': 'gyp_msan_clang_release_bot_x64', 48 'Linux MSan': 'gn_msan_clang_release_bot_x64',
49 'Linux Tsan v2': 'gyp_tsan_clang_release_bot_x64', 49 'Linux Tsan v2': 'gn_tsan_clang_release_bot_x64',
50 'Linux UBSan': 'gyp_ubsan_clang_release_bot_x64', 50 'Linux UBSan': 'gn_ubsan_clang_release_bot_x64',
51 'Linux UBSan vptr': 'gyp_ubsan_vptr_clang_release_bot_x64', 51 'Linux UBSan vptr': 'gn_ubsan_vptr_clang_release_bot_x64',
52 'Linux64 Release [large tests]': 'gyp_release_bot_x64', 52 'Linux64 Release [large tests]': 'gn_release_bot_x64',
53 'Linux64 Debug (GN)': 'gn_debug_bot_x64', 53 'Linux64 Debug (GN)': 'gn_debug_bot_x64',
54 'Linux64 Release (GN)': 'gn_release_bot_x64', 54 'Linux64 Release (GN)': 'gn_release_bot_x64',
55 55
56 # Android 56 # Android
57 'Android32 Builder': 'android_gn_release_bot_arm', 57 'Android32 Builder': 'android_gn_release_bot_arm',
58 'Android32 Builder (dbg)': 'android_gn_debug_static_bot_arm', 58 'Android32 Builder (dbg)': 'android_gn_debug_static_bot_arm',
59 'Android32 Builder x86': 'android_gn_release_bot_x86', 59 'Android32 Builder x86': 'android_gn_release_bot_x86',
60 'Android32 Builder x86 (dbg)': 'android_gn_debug_static_bot_x86', 60 'Android32 Builder x86 (dbg)': 'android_gn_debug_static_bot_x86',
61 'Android32 Builder MIPS (dbg)': 'android_gn_clang_debug_static_bot_mipsel' , 61 'Android32 Builder MIPS (dbg)': 'android_gn_clang_debug_static_bot_mipsel' ,
62 'Android32 Clang (dbg)': 'android_gn_clang_debug_static_bot_arm', 62 'Android32 Clang (dbg)': 'android_gn_clang_debug_static_bot_arm',
63 'Android64 Builder': 'android_gn_release_bot_arm64', 63 'Android64 Builder': 'android_gn_release_bot_arm64',
64 'Android64 Builder (dbg)': 'android_gn_debug_static_bot_arm64', 64 'Android64 Builder (dbg)': 'android_gn_debug_static_bot_arm64',
65 'Android64 Builder x64 (dbg)': 'android_gn_debug_static_bot_x64', 65 'Android64 Builder x64 (dbg)': 'android_gn_debug_static_bot_x64',
66 # TODO(kjellander): Remove the 'Android32 GN' configs as soon we've 66 # TODO(kjellander): Remove the 'Android32 GN' configs as soon we've
67 # renamed these bots to Android32 GYP in the main waterfall. 67 # renamed these bots to Android32 GYP in the main waterfall.
68 'Android32 GN': 'android_gyp_release_bot_arm', 68 'Android32 GN': 'android_gyp_release_bot_arm',
69 'Android32 GN (dbg)': 'android_gyp_debug_static_bot_arm', 69 'Android32 GN (dbg)': 'android_gyp_debug_static_bot_arm',
70 'Android32 GYP': 'android_gyp_release_bot_arm', 70 'Android32 GYP': 'android_gyp_release_bot_arm',
71 'Android32 GYP (dbg)': 'android_gyp_debug_static_bot_arm', 71 'Android32 GYP (dbg)': 'android_gyp_debug_static_bot_arm',
72 'Android32 Tests (L Nexus5)(dbg)': 'none', 72 'Android32 Tests (L Nexus5)(dbg)': 'none',
73 'Android32 Tests (L Nexus5)': 'none', 73 'Android32 Tests (L Nexus5)': 'none',
74 'Android32 Tests (L Nexus7.2)(dbg)': 'none', 74 'Android32 Tests (L Nexus7.2)(dbg)': 'none',
75 'Android32 Tests (L Nexus7.2)': 'none', 75 'Android32 Tests (L Nexus7.2)': 'none',
76 'Android64 Tests (L Nexus9)': 'none', 76 'Android64 Tests (L Nexus9)': 'none',
77 77
78 # Windows 78 # Windows
79 'Win32 Debug': 'gyp_debug_bot_x86', 79 'Win32 Debug': 'gn_debug_bot_x86',
80 'Win32 Release': 'gyp_release_bot_x86', 80 'Win32 Release': 'gn_release_bot_x86',
81 'Win64 Debug': 'gyp_debug_bot_x64', 81 'Win64 Debug': 'gn_debug_bot_x64',
82 'Win64 Release': 'gyp_release_bot_x64', 82 'Win64 Release': 'gn_release_bot_x64',
83 'Win64 Debug (GN)': 'gn_debug_bot_x64', 83 'Win64 Debug (GN)': 'gn_debug_bot_x64',
84 'Win64 Release (GN)': 'gn_release_bot_x64', 84 'Win64 Release (GN)': 'gn_release_bot_x64',
85 'Win32 Debug (Clang)': 'win_gyp_clang_debug_bot_x86', 85 'Win32 Debug (Clang)': 'win_gn_clang_debug_bot_x86',
86 'Win32 Release (Clang)': 'win_gyp_clang_release_bot_x86', 86 'Win32 Release (Clang)': 'win_gn_clang_release_bot_x86',
87 'Win64 Debug (Clang)': 'win_gyp_clang_debug_bot_x64', 87 'Win64 Debug (Clang)': 'win_gn_clang_debug_bot_x64',
88 'Win64 Release (Clang)': 'win_gyp_clang_release_bot_x64', 88 'Win64 Release (Clang)': 'win_gn_clang_release_bot_x64',
89 'Win SyzyASan': 'win_gyp_syzyasan_release_bot_x86', 89 'Win SyzyASan': 'win_gn_syzyasan_release_bot_x86',
90 'Win DrMemory Full': 'win_gyp_drmemory_debug_bot_x86', 90 'Win DrMemory Full': 'win_gn_drmemory_debug_bot_x86',
91 'Win DrMemory Light': 'win_gyp_drmemory_debug_bot_x86', 91 'Win DrMemory Light': 'win_gn_drmemory_debug_bot_x86',
92 'Win32 Release [large tests]': 'gyp_release_bot_x86', 92 'Win32 Release [large tests]': 'gn_release_bot_x86',
93 }, 93 },
94 'tryserver.webrtc': { 94 'tryserver.webrtc': {
95 # iOS 95 # iOS
96 'ios_dbg': 'ios_gyp_debug_static_bot_arm_device', 96 'ios_dbg': 'ios_gn_debug_static_bot_arm_device',
97 'ios_rel': 'ios_gyp_release_bot_arm_device', 97 'ios_rel': 'ios_gn_release_bot_arm_device',
98 'ios_arm64_dbg': 'ios_gyp_debug_static_bot_arm64_device', 98 'ios_arm64_dbg': 'ios_gn_debug_static_bot_arm64_device',
99 'ios_arm64_rel': 'ios_gyp_release_bot_arm64_device', 99 'ios_arm64_rel': 'ios_gn_release_bot_arm64_device',
100 'ios32_sim_dbg': 'ios_gyp_debug_static_bot_x86', 100 'ios32_sim_dbg': 'ios_gn_debug_static_bot_x86',
101 'ios64_sim_dbg': 'ios_gyp_debug_static_bot_x64', 101 'ios64_sim_dbg': 'ios_gn_debug_static_bot_x64',
102 'ios64_gn_dbg': 'ios_gn_debug_static_bot_arm64_device', 102 'ios64_gn_dbg': 'ios_gn_debug_static_bot_arm64_device',
103 'ios64_gn_rel': 'ios_gn_release_bot_arm64_device', 103 'ios64_gn_rel': 'ios_gn_release_bot_arm64_device',
104 104
105 # Mac 105 # Mac
106 'mac_compile_dbg': 'gyp_debug_bot_x64', 106 'mac_compile_dbg': 'gn_debug_bot_x64',
107 'mac_compile_rel': 'gyp_release_bot_x64', 107 'mac_compile_rel': 'gn_release_bot_x64',
108 'mac_dbg': 'gyp_debug_bot_x64', 108 'mac_dbg': 'gn_debug_bot_x64',
109 'mac_rel': 'gyp_release_bot_x64', 109 'mac_rel': 'gn_release_bot_x64',
110 'mac_gn_dbg': 'gn_debug_bot_x64', 110 'mac_gn_dbg': 'gn_debug_bot_x64',
111 'mac_gn_rel': 'gn_release_bot_x64', 111 'mac_gn_rel': 'gn_release_bot_x64',
112 'mac_asan': 'mac_gyp_asan_clang_release_bot_x64', 112 'mac_asan': 'mac_gn_asan_clang_release_bot_x64',
113 'mac_baremetal': 'gyp_release_bot_x64', 113 'mac_baremetal': 'gn_release_bot_x64',
114 'mac_swarming': 'swarming_gyp_debug_bot_x64', 114 'mac_swarming': 'swarming_gn_debug_bot_x64',
115 115
116 # Linux 116 # Linux
117 'linux_compile_dbg': 'gyp_debug_bot_x64', 117 'linux_compile_dbg': 'gn_debug_bot_x64',
118 'linux_compile_rel': 'gyp_release_bot_x64', 118 'linux_compile_rel': 'gn_release_bot_x64',
119 'linux_dbg': 'gyp_debug_bot_x64', 119 'linux_dbg': 'gn_debug_bot_x64',
120 'linux_rel': 'gyp_release_bot_x64', 120 'linux_rel': 'gn_release_bot_x64',
121 'linux_gn_dbg': 'gn_debug_bot_x64', 121 'linux_gn_dbg': 'gn_debug_bot_x64',
122 'linux_gn_rel': 'gn_release_bot_x64', 122 'linux_gn_rel': 'gn_release_bot_x64',
123 'linux_arm': 'gyp_crosscompile_release_bot_arm', 123 'linux_arm': 'gn_crosscompile_release_bot_arm',
124 'linux_asan': 'gyp_asan_lsan_clang_release_bot_x64', 124 'linux_asan': 'gn_asan_lsan_clang_release_bot_x64',
125 'linux_memcheck': 'gyp_memcheck_release_bot_x64', 125 'linux_memcheck': 'gn_memcheck_release_bot_x64',
126 'linux_msan': 'gyp_msan_clang_release_bot_x64', 126 'linux_msan': 'gn_msan_clang_release_bot_x64',
127 'linux_tsan2': 'gyp_tsan_clang_release_bot_x64', 127 'linux_tsan2': 'gn_tsan_clang_release_bot_x64',
128 'linux_ubsan': 'gyp_ubsan_clang_release_bot_x64', 128 'linux_ubsan': 'gn_ubsan_clang_release_bot_x64',
129 'linux_ubsan_vptr': 'gyp_ubsan_vptr_clang_release_bot_x64', 129 'linux_ubsan_vptr': 'gn_ubsan_vptr_clang_release_bot_x64',
130 'linux_baremetal': 'gyp_release_bot_x64', 130 'linux_baremetal': 'gn_release_bot_x64',
131 'linux_swarming': 'swarming_gyp_debug_bot_x64', 131 'linux_swarming': 'swarming_gn_debug_bot_x64',
132 132
133 # Android 133 # Android
134 'android_compile_dbg': 'android_gn_debug_static_bot_arm', 134 'android_compile_dbg': 'android_gn_debug_static_bot_arm',
135 'android_compile_rel': 'android_gn_release_bot_arm', 135 'android_compile_rel': 'android_gn_release_bot_arm',
136 'android_compile_arm64_dbg': 'android_gn_debug_static_bot_arm64', 136 'android_compile_arm64_dbg': 'android_gn_debug_static_bot_arm64',
137 'android_compile_arm64_rel': 'android_gn_release_bot_arm64', 137 'android_compile_arm64_rel': 'android_gn_release_bot_arm64',
138 'android_compile_x86_dbg': 'android_gn_debug_static_bot_x86', 138 'android_compile_x86_dbg': 'android_gn_debug_static_bot_x86',
139 'android_compile_x86_rel': 'android_gn_release_bot_x86', 139 'android_compile_x86_rel': 'android_gn_release_bot_x86',
140 'android_compile_x64_dbg': 'android_gn_debug_static_bot_x64', 140 'android_compile_x64_dbg': 'android_gn_debug_static_bot_x64',
141 'android_compile_mips_dbg': 'android_gn_clang_debug_static_bot_mipsel', 141 'android_compile_mips_dbg': 'android_gn_clang_debug_static_bot_mipsel',
142 'android_dbg': 'android_gn_debug_static_bot_arm', 142 'android_dbg': 'android_gn_debug_static_bot_arm',
143 'android_rel': 'android_gn_release_bot_arm', 143 'android_rel': 'android_gn_release_bot_arm',
144 'android_clang_dbg': 'android_gn_clang_debug_static_bot_arm', 144 'android_clang_dbg': 'android_gn_clang_debug_static_bot_arm',
145 'android_arm64_rel': 'android_gn_release_bot_arm64', 145 'android_arm64_rel': 'android_gn_release_bot_arm64',
146 'android_n6': 'android_gn_debug_static_bot_arm', 146 'android_n6': 'android_gn_debug_static_bot_arm',
147 # TODO(kjellander): Remove the android_gn_* configs as soon we've renamed 147 # TODO(kjellander): Remove the android_gn_* configs as soon we've renamed
148 # the bots to the GYP versions at the tryserver. 148 # the bots to the GYP versions at the tryserver.
149 'android_gn_dbg': 'android_gyp_debug_static_bot_arm', 149 'android_gn_dbg': 'android_gyp_debug_static_bot_arm',
150 'android_gn_rel': 'android_gyp_release_bot_arm', 150 'android_gn_rel': 'android_gyp_release_bot_arm',
151 'android_gyp_dbg': 'android_gyp_debug_static_bot_arm', 151 'android_gyp_dbg': 'android_gyp_debug_static_bot_arm',
152 'android_gyp_rel': 'android_gyp_release_bot_arm', 152 'android_gyp_rel': 'android_gyp_release_bot_arm',
153 153
154 # Windows 154 # Windows
155 'win_compile_dbg': 'gyp_debug_bot_x86', 155 'win_compile_dbg': 'gn_debug_bot_x86',
156 'win_compile_rel': 'gyp_release_bot_x86', 156 'win_compile_rel': 'gn_release_bot_x86',
157 'win_compile_x64_dbg': 'gyp_debug_bot_x64', 157 'win_compile_x64_dbg': 'gn_debug_bot_x64',
158 'win_compile_x64_rel': 'gyp_release_bot_x64', 158 'win_compile_x64_rel': 'gn_release_bot_x64',
159 'win_dbg': 'gyp_debug_bot_x86', 159 'win_dbg': 'gn_debug_bot_x86',
160 'win_rel': 'gyp_release_bot_x86', 160 'win_rel': 'gn_release_bot_x86',
161 'win_x64_dbg': 'gyp_debug_bot_x64', 161 'win_x64_dbg': 'gn_debug_bot_x64',
162 'win_x64_rel': 'gyp_release_bot_x64', 162 'win_x64_rel': 'gn_release_bot_x64',
163 'win_x64_gn_dbg': 'gn_debug_bot_x64', 163 'win_x64_gn_dbg': 'gn_debug_bot_x64',
164 'win_x64_gn_rel': 'gn_release_bot_x64', 164 'win_x64_gn_rel': 'gn_release_bot_x64',
165 'win_clang_dbg': 'win_gyp_clang_debug_bot_x86', 165 'win_clang_dbg': 'win_gn_clang_debug_bot_x86',
166 'win_clang_rel': 'win_gyp_clang_release_bot_x86', 166 'win_clang_rel': 'win_gn_clang_release_bot_x86',
167 'win_x64_clang_dbg': 'win_gyp_clang_debug_bot_x64', 167 'win_x64_clang_dbg': 'win_gn_clang_debug_bot_x64',
168 'win_x64_clang_rel': 'win_gyp_clang_release_bot_x64', 168 'win_x64_clang_rel': 'win_gn_clang_release_bot_x64',
169 'win_asan': 'win_gyp_syzyasan_release_bot_x86', 169 'win_asan': 'win_gn_syzyasan_release_bot_x86',
170 'win_drmemory_light': 'win_gyp_drmemory_debug_bot_x86', 170 'win_drmemory_light': 'win_gn_drmemory_debug_bot_x86',
171 'win_drmemory_full': 'win_gyp_drmemory_debug_bot_x86', 171 'win_drmemory_full': 'win_gn_drmemory_debug_bot_x86',
172 'win_baremetal': 'gyp_release_bot_x86', 172 'win_baremetal': 'gn_release_bot_x86',
173 'win_swarming': 'swarming_gyp_debug_bot_x64', 173 'win_swarming': 'swarming_gn_debug_bot_x64',
174 }, 174 },
175 }, 175 },
176 176
177 # This is the list of configs that you can pass to mb; each config 177 # This is the list of configs that you can pass to mb; each config
178 # represents a particular combination of GYP_DEFINES/gn args that 178 # represents a particular combination of GYP_DEFINES/gn args that
179 # we must support. A given config *may* be platform-specific but 179 # we must support. A given config *may* be platform-specific but
180 # is not necessarily so (i.e., we might have mac, win, and linux 180 # is not necessarily so (i.e., we might have mac, win, and linux
181 # bots all using the 'gn_release_bot' config). 181 # bots all using the 'gn_release_bot' config).
182 'configs': { 182 'configs': {
183 # iOS 183 # iOS
184 'ios_gn_debug_static_bot_arm64_device': [ 184 'ios_gn_debug_static_bot_arm64_device': [
185 'ios', 'gn', 'debug_static_bot', 'arm64', 'device' 185 'ios', 'gn', 'debug_static_bot', 'arm64', 'device'
186 ], 186 ],
187 'ios_gn_release_bot_arm64_device': [ 187 'ios_gn_release_bot_arm64_device': [
188 'ios', 'gn', 'release_bot', 'arm64', 'device' 188 'ios', 'gn', 'release_bot', 'arm64', 'device'
189 ], 189 ],
190 'ios_gyp_debug_static_bot_arm_device': [ 190 'ios_gn_debug_static_bot_arm_device': [
191 'ios', 'gyp', 'debug_static_bot', 'arm', 'device' 191 'ios', 'gn', 'debug_static_bot', 'arm', 'device'
192 ], 192 ],
193 'ios_gyp_release_bot_arm_device': [ 193 'ios_gn_release_bot_arm_device': [
194 'ios', 'gyp', 'release_bot', 'arm', 'device' 194 'ios', 'gn', 'release_bot', 'arm', 'device'
195 ], 195 ],
196 'ios_gyp_debug_static_bot_arm64_device': [ 196 'ios_gn_debug_static_bot_x86': [
197 'ios', 'gyp', 'debug_static_bot', 'arm64', 'device' 197 'ios', 'gn', 'debug_static_bot', 'x86'
198 ], 198 ],
199 'ios_gyp_release_bot_arm64_device': [ 199 'ios_gn_debug_static_bot_x64': [
200 'ios', 'gyp', 'release_bot', 'arm64', 'device' 200 'ios', 'gn', 'release_bot', 'x64'
201 ],
202 'ios_gyp_debug_static_bot_x86': [
203 'ios', 'gyp', 'debug_static_bot', 'x86'
204 ],
205 'ios_gyp_debug_static_bot_x64': [
206 'ios', 'gyp', 'release_bot', 'x64'
207 ], 201 ],
208 202
209 # Linux, Mac and Windows 203 # Linux, Mac and Windows
210 'gyp_crosscompile_release_bot_arm': [ 204 'gn_crosscompile_release_bot_arm': [
211 'gyp', 'crosscompile', 'openh264_release_bot', 'arm' 205 'gn', 'crosscompile', 'openh264_release_bot', 'arm'
212 ], 206 ],
213 'gyp_debug_bot_x86': [ 207 'gn_debug_bot_x86': [
214 'gyp', 'openh264_debug_bot', 'x86' 208 'gn', 'openh264_debug_bot', 'x86'
215 ], 209 ],
216 'gyp_release_bot_x86': [ 210 'gn_release_bot_x86': [
217 'gyp', 'openh264_release_bot', 'x86' 211 'gn', 'openh264_release_bot', 'x86'
218 ],
219 'gyp_debug_bot_x64': [
220 'gyp', 'openh264_debug_bot', 'x64'
221 ],
222 'gyp_release_bot_x64': [
223 'gyp', 'openh264_release_bot', 'x64'
224 ],
225 'gyp_asan_lsan_clang_release_bot_x64': [
226 'gyp', 'asan', 'lsan', 'clang', 'openh264_release_bot', 'x64'
227 ],
228 'gyp_memcheck_release_bot_x64': [
229 'gyp', 'memcheck', 'openh264_release_bot', 'x64'
230 ],
231 'gyp_msan_clang_release_bot_x64': [
232 'gyp', 'msan', 'clang', 'openh264_release_bot', 'x64'
233 ],
234 'gyp_tsan_clang_release_bot_x64': [
235 'gyp', 'tsan', 'clang', 'openh264_release_bot', 'x64'
236 ],
237 'gyp_ubsan_clang_release_bot_x64': [
238 'gyp', 'ubsan', 'clang', 'openh264_release_bot', 'x64'
239 ],
240 'gyp_ubsan_vptr_clang_release_bot_x64': [
241 'gyp', 'ubsan_vptr', 'clang', 'openh264_release_bot', 'x64'
242 ], 212 ],
243 'gn_debug_bot_x64': [ 213 'gn_debug_bot_x64': [
244 'gn', 'openh264_debug_bot', 'x64' 214 'gn', 'openh264_debug_bot', 'x64'
245 ], 215 ],
246 'gn_release_bot_x64': [ 216 'gn_release_bot_x64': [
247 'gn', 'openh264_release_bot', 'x64' 217 'gn', 'openh264_release_bot', 'x64'
248 ], 218 ],
249 'swarming_gyp_debug_bot_x64': [ 219 'gn_asan_lsan_clang_release_bot_x64': [
250 'swarming', 'gyp', 'openh264_debug_bot', 'x64' 220 'gn', 'asan', 'lsan', 'clang', 'openh264_release_bot', 'x64'
221 ],
222 'gn_memcheck_release_bot_x64': [
223 'gn', 'memcheck', 'openh264_release_bot', 'x64'
224 ],
225 'gn_msan_clang_release_bot_x64': [
226 'gn', 'msan', 'clang', 'openh264_release_bot', 'x64'
227 ],
228 'gn_tsan_clang_release_bot_x64': [
229 'gn', 'tsan', 'clang', 'openh264_release_bot', 'x64'
230 ],
231 'gn_ubsan_clang_release_bot_x64': [
232 'gn', 'ubsan', 'clang', 'openh264_release_bot', 'x64'
233 ],
234 'gn_ubsan_vptr_clang_release_bot_x64': [
235 'gn', 'ubsan_vptr', 'clang', 'openh264_release_bot', 'x64'
236 ],
237 'swarming_gn_debug_bot_x64': [
238 'swarming', 'gn', 'openh264_debug_bot', 'x64'
251 ], 239 ],
252 240
253 # Windows 241 # Windows
254 'win_gyp_clang_debug_bot_x86': [ 242 'win_gn_clang_debug_bot_x86': [
255 'gyp', 'clang', 'openh264_debug_bot', 'x86', 243 'gn', 'clang', 'openh264_debug_bot', 'x86',
256 ], 244 ],
257 'win_gyp_clang_release_bot_x86': [ 245 'win_gn_clang_release_bot_x86': [
258 'gyp', 'clang', 'openh264_release_bot', 'x86', 246 'gn', 'clang', 'openh264_release_bot', 'x86',
259 ], 247 ],
260 'win_gyp_clang_debug_bot_x64': [ 248 'win_gn_clang_debug_bot_x64': [
261 'gyp', 'clang', 'openh264_debug_bot', 'x64', 249 'gn', 'clang', 'openh264_debug_bot', 'x64',
262 ], 250 ],
263 'win_gyp_clang_release_bot_x64': [ 251 'win_gn_clang_release_bot_x64': [
264 'gyp', 'clang', 'openh264_release_bot', 'x64', 252 'gn', 'clang', 'openh264_release_bot', 'x64',
265 ], 253 ],
266 'win_gyp_syzyasan_release_bot_x86': [ 254 'win_gn_syzyasan_release_bot_x86': [
267 'gyp', 'syzyasan', 'minimal_symbols', 'openh264_release_bot', 'x86', 255 'gn', 'syzyasan', 'minimal_symbols', 'openh264_release_bot', 'x86',
268 ], 256 ],
269 # TODO(kjellander): Flip DrMemory bots over to Release after GN migration 257 # TODO(kjellander): Flip DrMemory bots over to Release after GN migration
270 # (http://crbug.com/636414). 258 # (http://crbug.com/636414).
271 'win_gyp_drmemory_debug_bot_x86': [ 259 'win_gn_drmemory_debug_bot_x86': [
272 'gyp', 'drmemory', 'minimal_symbols', 'openh264_debug_bot', 'x86', 260 'gn', 'drmemory', 'minimal_symbols', 'openh264_debug_bot', 'x86',
273 ], 261 ],
274 262
275 # Mac 263 # Mac
276 'mac_gyp_asan_clang_release_bot_x64': [ 264 'mac_gn_asan_clang_release_bot_x64': [
277 'gyp', 'asan', 'clang', 'openh264_release_bot', 'x64', 265 'gn', 'asan', 'clang', 'openh264_release_bot', 'x64',
278 ], 266 ],
279 267
280 # Android 268 # Android
281 'android_gyp_debug_static_bot_arm': [ 269 'android_gyp_debug_static_bot_arm': [
282 'android', 'gyp', 'debug_static_bot', 'arm', 'exclude_tests' 270 'android', 'gyp', 'debug_static_bot', 'arm', 'exclude_tests'
283 ], 271 ],
284 'android_gyp_release_bot_arm': [ 272 'android_gyp_release_bot_arm': [
285 'android', 'gyp', 'release_bot', 'arm', 'exclude_tests' 273 'android', 'gyp', 'release_bot', 'arm', 'exclude_tests'
286 ], 274 ],
287 'android_gn_debug_static_bot_arm': [ 275 'android_gn_debug_static_bot_arm': [
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
503 'gn_args': 'target_cpu="x64"', 491 'gn_args': 'target_cpu="x64"',
504 'gyp_defines': 'target_arch=x64', 492 'gyp_defines': 'target_arch=x64',
505 }, 493 },
506 494
507 'x86': { 495 'x86': {
508 'gn_args': 'target_cpu="x86"', 496 'gn_args': 'target_cpu="x86"',
509 'gyp_defines': 'target_arch=ia32', 497 'gyp_defines': 'target_arch=ia32',
510 }, 498 },
511 }, 499 },
512 } 500 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_device/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698