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

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

Issue 2105353002: [gn] Switch linux64 debug and internal snapshot to gn (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix Created 4 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 | « gni/v8.gni ('k') | 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 2016 The V8 project authors. All rights reserved. 1 # Copyright 2016 The V8 project authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 # This is a map of buildbot master names -> buildbot builder names -> 6 # This is a map of buildbot master names -> buildbot builder names ->
7 # config names (where each config name is a key in the 'configs' dict, 7 # config names (where each config name is a key in the 'configs' dict,
8 # below). MB uses this dict to look up which config to use for a given bot. 8 # below). MB uses this dict to look up which config to use for a given bot.
9 # Bots are ordered by appearance on waterfall. 9 # Bots are ordered by appearance on waterfall.
10 'masters': { 10 'masters': {
11 'client.dart.fyi': { 11 'client.dart.fyi': {
12 'v8-linux-release': 'gyp_release_x86_disassembler', 12 'v8-linux-release': 'gyp_release_x86_disassembler',
13 'v8-win-release': 'gyp_release_x86_disassembler', 13 'v8-win-release': 'gyp_release_x86_disassembler',
14 'v8-mac-release': 'gyp_release_x86_disassembler', 14 'v8-mac-release': 'gyp_release_x86_disassembler',
15 }, 15 },
16 'client.dynamorio': { 16 'client.dynamorio': {
17 'linux-v8-dr': 'gyp_release_x64', 17 'linux-v8-dr': 'gyp_release_x64',
18 }, 18 },
19 'client.v8': { 19 'client.v8': {
20 # Linux. 20 # Linux.
21 'V8 Linux - builder': 'gyp_release_x86_gcmole', 21 'V8 Linux - builder': 'gyp_release_x86_gcmole',
22 'V8 Linux - debug builder': 'gyp_debug_x86', 22 'V8 Linux - debug builder': 'gyp_debug_x86',
23 'V8 Linux - nosnap builder': 'gyp_release_x86_no_snap', 23 'V8 Linux - nosnap builder': 'gyp_release_x86_no_snap',
24 'V8 Linux - nosnap debug builder': 'gyp_debug_x86_no_snap', 24 'V8 Linux - nosnap debug builder': 'gyp_debug_x86_no_snap',
25 'V8 Linux - shared': 'gyp_release_x86_shared_verify_heap', 25 'V8 Linux - shared': 'gyp_release_x86_shared_verify_heap',
26 'V8 Linux - noi18n - debug': 'gyp_debug_x86_no_i18n', 26 'V8 Linux - noi18n - debug': 'gyp_debug_x86_no_i18n',
27 # Linux64. 27 # Linux64.
28 'V8 Linux64 - builder': 'gn_release_x64', 28 'V8 Linux64 - builder': 'gn_release_x64',
29 'V8 Linux64 - debug builder': 'gyp_debug_x64_valgrind', 29 'V8 Linux64 - debug builder': 'gn_debug_x64_valgrind',
30 'V8 Linux64 - custom snapshot - debug builder': 'gyp_debug_x64_custom', 30 'V8 Linux64 - custom snapshot - debug builder': 'gyp_debug_x64_custom',
31 'V8 Linux64 - internal snapshot': 'gyp_release_x64_internal', 31 'V8 Linux64 - internal snapshot': 'gn_release_x64_internal',
32 # Windows. 32 # Windows.
33 'V8 Win32 - builder': 'gyp_release_x86_minimal_symbols', 33 'V8 Win32 - builder': 'gyp_release_x86_minimal_symbols',
34 'V8 Win32 - debug builder': 'gyp_debug_x86_minimal_symbols', 34 'V8 Win32 - debug builder': 'gyp_debug_x86_minimal_symbols',
35 'V8 Win32 - nosnap - shared': 35 'V8 Win32 - nosnap - shared':
36 'gyp_release_x86_no_snap_shared_minimal_symbols', 36 'gyp_release_x86_no_snap_shared_minimal_symbols',
37 'V8 Win64': 'gyp_release_x64_minimal_symbols', 37 'V8 Win64': 'gyp_release_x64_minimal_symbols',
38 'V8 Win64 - debug': 'gyp_debug_x64_minimal_symbols', 38 'V8 Win64 - debug': 'gyp_debug_x64_minimal_symbols',
39 'V8 Win64 - clang': 'gyp_release_x64_clang', 39 'V8 Win64 - clang': 'gyp_release_x64_clang',
40 # Mac. 40 # Mac.
41 'V8 Mac': 'gyp_release_x86', 41 'V8 Mac': 'gyp_release_x86',
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 'v8_linux_nodcheck_rel_ng': 'gyp_release_x86_minimal_symbols', 134 'v8_linux_nodcheck_rel_ng': 'gyp_release_x86_minimal_symbols',
135 'v8_linux_dbg_ng': 'gyp_debug_x86_trybot', 135 'v8_linux_dbg_ng': 'gyp_debug_x86_trybot',
136 'v8_linux_noi18n_rel_ng': 'gyp_release_x86_no_i18n_trybot', 136 'v8_linux_noi18n_rel_ng': 'gyp_release_x86_no_i18n_trybot',
137 'v8_linux_gc_stress_dbg': 'gyp_debug_x86_trybot', 137 'v8_linux_gc_stress_dbg': 'gyp_debug_x86_trybot',
138 'v8_linux_nosnap_rel': 'gyp_release_x86_no_snap_trybot', 138 'v8_linux_nosnap_rel': 'gyp_release_x86_no_snap_trybot',
139 'v8_linux_nosnap_dbg': 'gyp_debug_x86_no_snap_trybot', 139 'v8_linux_nosnap_dbg': 'gyp_debug_x86_no_snap_trybot',
140 'v8_linux_gcc_compile_rel': 'gyp_release_x86_gcc_minimal_symbols', 140 'v8_linux_gcc_compile_rel': 'gyp_release_x86_gcc_minimal_symbols',
141 'v8_linux_gcc_rel': 'gyp_release_x86_gcc_minimal_symbols', 141 'v8_linux_gcc_rel': 'gyp_release_x86_gcc_minimal_symbols',
142 'v8_linux64_rel_ng': 'gn_release_x64_trybot', 142 'v8_linux64_rel_ng': 'gn_release_x64_trybot',
143 'v8_linux64_avx2_rel_ng': 'gn_release_x64_trybot', 143 'v8_linux64_avx2_rel_ng': 'gn_release_x64_trybot',
144 'v8_linux64_avx2_dbg': 'gyp_debug_x64_trybot', 144 'v8_linux64_avx2_dbg': 'gn_debug_x64_trybot',
145 'v8_linux64_asan_rel_ng': 'gyp_release_x64_asan_minimal_symbols', 145 'v8_linux64_asan_rel_ng': 'gyp_release_x64_asan_minimal_symbols',
146 'v8_linux64_msan_rel': 'gyp_release_simulate_arm64_msan_minimal_symbols', 146 'v8_linux64_msan_rel': 'gyp_release_simulate_arm64_msan_minimal_symbols',
147 'v8_linux64_sanitizer_coverage_rel': 147 'v8_linux64_sanitizer_coverage_rel':
148 'gyp_release_x64_asan_minimal_symbols_coverage', 148 'gyp_release_x64_asan_minimal_symbols_coverage',
149 'v8_linux64_tsan_rel': 'gyp_release_x64_tsan_minimal_symbols', 149 'v8_linux64_tsan_rel': 'gyp_release_x64_tsan_minimal_symbols',
150 'v8_win_dbg': 'gyp_debug_x86_trybot', 150 'v8_win_dbg': 'gyp_debug_x86_trybot',
151 'v8_win_compile_dbg': 'gyp_debug_x86_trybot', 151 'v8_win_compile_dbg': 'gyp_debug_x86_trybot',
152 'v8_win_rel_ng': 'gyp_release_x86_trybot', 152 'v8_win_rel_ng': 'gyp_release_x86_trybot',
153 'v8_win_nosnap_shared_rel_ng': 153 'v8_win_nosnap_shared_rel_ng':
154 'gyp_release_x86_no_snap_shared_minimal_symbols', 154 'gyp_release_x86_no_snap_shared_minimal_symbols',
(...skipping 18 matching lines...) Expand all
173 }, 173 },
174 }, 174 },
175 175
176 176
177 # To ease readability, config values are ordered by: 177 # To ease readability, config values are ordered by:
178 # gyp/gn, release/debug, arch type, other values alphabetically. 178 # gyp/gn, release/debug, arch type, other values alphabetically.
179 'configs': { 179 'configs': {
180 # GN release configs for x64. 180 # GN release configs for x64.
181 'gn_release_x64': [ 181 'gn_release_x64': [
182 'gn', 'release_bot', 'x64', 'swarming'], 182 'gn', 'release_bot', 'x64', 'swarming'],
183 'gn_release_x64_internal': [
184 'gn', 'release_bot', 'x64', 'swarming', 'v8_snapshot_internal'],
183 'gn_release_x64_trybot': [ 185 'gn_release_x64_trybot': [
184 'gn', 'release_trybot', 'x64', 'swarming'], 186 'gn', 'release_trybot', 'x64', 'swarming'],
185 187
188 # GN debug configs for x64.
189 'gn_debug_x64_trybot': [
190 'gn', 'debug_trybot', 'x64', 'swarming'],
191 'gn_debug_x64_valgrind': [
192 'gn', 'debug_bot', 'x64', 'swarming', 'valgrind'],
193
186 # Gyp debug configs for arm. 194 # Gyp debug configs for arm.
187 'gyp_debug_arm': [ 195 'gyp_debug_arm': [
188 'gyp', 'debug_bot', 'arm', 'crosscompile', 'hard_float', 'swarming'], 196 'gyp', 'debug_bot', 'arm', 'crosscompile', 'hard_float', 'swarming'],
189 197
190 # Gyp debug configs for simulators. 198 # Gyp debug configs for simulators.
191 'gyp_debug_simulate_arm': [ 199 'gyp_debug_simulate_arm': [
192 'gyp', 'debug_bot', 'simulate_arm', 'swarming'], 200 'gyp', 'debug_bot', 'simulate_arm', 'swarming'],
193 'gyp_debug_simulate_arm_asan_edge': [ 201 'gyp_debug_simulate_arm_asan_edge': [
194 'gyp', 'debug_bot', 'simulate_arm', 'asan', 'edge'], 202 'gyp', 'debug_bot', 'simulate_arm', 'asan', 'edge'],
195 'gyp_debug_simulate_arm64': [ 203 'gyp_debug_simulate_arm64': [
196 'gyp', 'debug_bot', 'simulate_arm64', 'swarming'], 204 'gyp', 'debug_bot', 'simulate_arm64', 'swarming'],
197 'gyp_debug_simulate_arm64_asan_edge': [ 205 'gyp_debug_simulate_arm64_asan_edge': [
198 'gyp', 'debug_bot', 'simulate_arm64', 'asan', 'lsan', 'edge'], 206 'gyp', 'debug_bot', 'simulate_arm64', 'asan', 'lsan', 'edge'],
199 'gyp_debug_simulate_arm64_no_snap': [ 207 'gyp_debug_simulate_arm64_no_snap': [
200 'gyp', 'debug_bot', 'simulate_arm64', 'swarming', 'v8_snapshot_none'], 208 'gyp', 'debug_bot', 'simulate_arm64', 'swarming', 'v8_snapshot_none'],
201 'gyp_debug_simulate_mipsel_asan_edge': [ 209 'gyp_debug_simulate_mipsel_asan_edge': [
202 'gyp', 'debug_bot', 'simulate_mipsel', 'asan', 'edge'], 210 'gyp', 'debug_bot', 'simulate_mipsel', 'asan', 'edge'],
203 'gyp_debug_simulate_x87_no_snap': [ 211 'gyp_debug_simulate_x87_no_snap': [
204 'gyp', 'debug_bot', 'simulate_x87', 'v8_snapshot_none'], 212 'gyp', 'debug_bot', 'simulate_x87', 'v8_snapshot_none'],
205 213
206 # Gyp debug configs for x64. 214 # Gyp debug configs for x64.
207 'gyp_debug_x64': [ 215 'gyp_debug_x64': [
208 'gyp', 'debug_bot', 'x64', 'swarming'], 216 'gyp', 'debug_bot', 'x64', 'swarming'],
209 'gyp_debug_x64_asan_edge': [ 217 'gyp_debug_x64_asan_edge': [
210 'gyp', 'debug_bot', 'x64', 'asan', 'lsan', 'edge'], 218 'gyp', 'debug_bot', 'x64', 'asan', 'lsan', 'edge'],
211 'gyp_debug_x64_custom': [ 219 'gyp_debug_x64_custom': [
212 'gyp', 'debug_bot', 'x64', 'swarming', 'v8_snapshot_custom'], 220 'gyp', 'debug_bot', 'x64', 'swarming', 'v8_snapshot_custom'],
213 'gyp_debug_x64_minimal_symbols': [ 221 'gyp_debug_x64_minimal_symbols': [
214 'gyp', 'debug_bot', 'x64', 'minimal_symbols', 'swarming'], 222 'gyp', 'debug_bot', 'x64', 'minimal_symbols', 'swarming'],
215 'gyp_debug_x64_trybot': [
216 'gyp', 'debug_trybot', 'x64', 'swarming'],
217 'gyp_debug_x64_valgrind': [
218 'gyp', 'debug_bot', 'x64', 'swarming', 'valgrind'],
219 223
220 # Gyp debug configs for x86. 224 # Gyp debug configs for x86.
221 'gyp_debug_x86': [ 225 'gyp_debug_x86': [
222 'gyp', 'debug_bot', 'x86', 'swarming'], 226 'gyp', 'debug_bot', 'x86', 'swarming'],
223 'gyp_debug_x86_minimal_symbols': [ 227 'gyp_debug_x86_minimal_symbols': [
224 'gyp', 'debug_bot', 'x86', 'minimal_symbols', 'swarming'], 228 'gyp', 'debug_bot', 'x86', 'minimal_symbols', 'swarming'],
225 'gyp_debug_x86_trybot': [ 229 'gyp_debug_x86_trybot': [
226 'gyp', 'debug_trybot', 'x86', 'swarming'], 230 'gyp', 'debug_trybot', 'x86', 'swarming'],
227 'gyp_debug_x86_no_i18n': [ 231 'gyp_debug_x86_no_i18n': [
228 'gyp', 'debug_bot', 'x86', 'v8_no_i18n'], 232 'gyp', 'debug_bot', 'x86', 'v8_no_i18n'],
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 'gyp_release_x64_clang': [ 299 'gyp_release_x64_clang': [
296 'gyp', 'release_bot', 'x64', 'clang', 'swarming'], 300 'gyp', 'release_bot', 'x64', 'clang', 'swarming'],
297 'gyp_release_x64_gcc_coverage': [ 301 'gyp_release_x64_gcc_coverage': [
298 'gyp', 'release_bot', 'x64', 'coverage', 'gcc'], 302 'gyp', 'release_bot', 'x64', 'coverage', 'gcc'],
299 'gyp_release_x64_minimal_symbols': [ 303 'gyp_release_x64_minimal_symbols': [
300 'gyp', 'release_bot', 'x64', 'minimal_symbols', 'swarming'], 304 'gyp', 'release_bot', 'x64', 'minimal_symbols', 'swarming'],
301 'gyp_release_x64_tsan': [ 305 'gyp_release_x64_tsan': [
302 'gyp', 'release_bot', 'x64', 'tsan', 'swarming'], 306 'gyp', 'release_bot', 'x64', 'tsan', 'swarming'],
303 'gyp_release_x64_tsan_minimal_symbols': [ 307 'gyp_release_x64_tsan_minimal_symbols': [
304 'gyp', 'release_bot', 'x64', 'tsan', 'minimal_symbols', 'swarming'], 308 'gyp', 'release_bot', 'x64', 'tsan', 'minimal_symbols', 'swarming'],
305 'gyp_release_x64_internal': [
306 'gyp', 'release_bot', 'x64', 'swarming', 'v8_snapshot_internal'],
307 'gyp_release_x64_trybot': [ 309 'gyp_release_x64_trybot': [
308 'gyp', 'release_trybot', 'x64', 'swarming'], 310 'gyp', 'release_trybot', 'x64', 'swarming'],
309 311
310 # Gyp release configs for x86. 312 # Gyp release configs for x86.
311 'gyp_release_x86': [ 313 'gyp_release_x86': [
312 'gyp', 'release_bot', 'x86', 'swarming'], 314 'gyp', 'release_bot', 'x86', 'swarming'],
313 'gyp_release_x86_disassembler': [ 315 'gyp_release_x86_disassembler': [
314 'gyp', 'release_bot', 'x86', 'v8_enable_disassembler'], 316 'gyp', 'release_bot', 'x86', 'v8_enable_disassembler'],
315 'gyp_release_x86_gcc': [ 317 'gyp_release_x86_gcc': [
316 'gyp', 'release_bot', 'x86', 'gcc'], 318 'gyp', 'release_bot', 'x86', 'gcc'],
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
535 'gyp_defines': 537 'gyp_defines':
536 'release_extra_cflags="-fno-inline-functions -fno-inline"', 538 'release_extra_cflags="-fno-inline-functions -fno-inline"',
537 }, 539 },
538 540
539 'tsan': { 541 'tsan': {
540 'gn_args': 'clang=true tsan=true', 542 'gn_args': 'clang=true tsan=true',
541 'gyp_defines': 'clang=1 tsan=1', 543 'gyp_defines': 'clang=1 tsan=1',
542 }, 544 },
543 545
544 'valgrind': { 546 'valgrind': {
545 # TODO(machenbach): Add this to gn. 547 'gn_args': 'v8_has_valgrind=true',
546 'gn_args': 'has_valgrind=true',
547 'gyp_defines': 'has_valgrind=1', 548 'gyp_defines': 'has_valgrind=1',
548 }, 549 },
549 550
550 'v8_no_i18n': { 551 'v8_no_i18n': {
551 'gn_args': 'v8_enable_i18n_support=false', 552 'gn_args': 'v8_enable_i18n_support=false',
552 'gyp_defines': 'v8_enable_i18n_support=0', 553 'gyp_defines': 'v8_enable_i18n_support=0',
553 }, 554 },
554 555
555 'v8_enable_disassembler': { 556 'v8_enable_disassembler': {
556 'gn_args': 'v8_enable_disassembler=true', 557 'gn_args': 'v8_enable_disassembler=true',
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
612 'gn_args': 'target_cpu="x64"', 613 'gn_args': 'target_cpu="x64"',
613 'gyp_defines': 'target_arch=x64', 614 'gyp_defines': 'target_arch=x64',
614 }, 615 },
615 616
616 'x86': { 617 'x86': {
617 'gn_args': 'target_cpu="x86"', 618 'gn_args': 'target_cpu="x86"',
618 'gyp_defines': 'target_arch=ia32', 619 'gyp_defines': 'target_arch=ia32',
619 }, 620 },
620 }, 621 },
621 } 622 }
OLDNEW
« no previous file with comments | « gni/v8.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698