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

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

Issue 2081263003: [mb] Switch remaining bots to mb (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@mb27
Patch Set: 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 | « 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 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': {
Michael Achenbach 2016/06/22 10:54:35 Some links, the darts bot are not running anymore
12 'v8-linux-release': 'gyp_release_x86_disassembler',
13 'v8-win-release': 'gyp_release_x86_disassembler',
14 'v8-mac-release': 'gyp_release_x86_disassembler',
15 },
16 'client.dynamorio': {
17 'linux-v8-dr': 'gyp_release_x64',
18 },
11 'client.v8': { 19 'client.v8': {
12 # Linux. 20 # Linux.
13 'V8 Linux - builder': 'gyp_release_x86_gcmole', 21 'V8 Linux - builder': 'gyp_release_x86_gcmole',
14 'V8 Linux - debug builder': 'gyp_debug_x86', 22 'V8 Linux - debug builder': 'gyp_debug_x86',
15 'V8 Linux - nosnap builder': 'gyp_release_x86_no_snap', 23 'V8 Linux - nosnap builder': 'gyp_release_x86_no_snap',
16 'V8 Linux - nosnap debug builder': 'gyp_debug_x86_no_snap', 24 'V8 Linux - nosnap debug builder': 'gyp_debug_x86_no_snap',
17 'V8 Linux - shared': 'gyp_release_x86_shared_verify_heap', 25 'V8 Linux - shared': 'gyp_release_x86_shared_verify_heap',
18 'V8 Linux - noi18n - debug': 'gyp_debug_x86_no_i18n', 26 'V8 Linux - noi18n - debug': 'gyp_debug_x86_no_i18n',
19 # Linux64. 27 # Linux64.
20 'V8 Linux64 - builder': 'gyp_release_x64', 28 'V8 Linux64 - builder': 'gyp_release_x64',
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 'gyp_release_x64_tsan_minimal_symbols': [ 301 'gyp_release_x64_tsan_minimal_symbols': [
294 'gyp', 'release_bot', 'x64', 'tsan', 'minimal_symbols', 'swarming'], 302 'gyp', 'release_bot', 'x64', 'tsan', 'minimal_symbols', 'swarming'],
295 'gyp_release_x64_internal': [ 303 'gyp_release_x64_internal': [
296 'gyp', 'release_bot', 'x64', 'swarming', 'v8_snapshot_internal'], 304 'gyp', 'release_bot', 'x64', 'swarming', 'v8_snapshot_internal'],
297 'gyp_release_x64_trybot': [ 305 'gyp_release_x64_trybot': [
298 'gyp', 'release_trybot', 'x64', 'swarming'], 306 'gyp', 'release_trybot', 'x64', 'swarming'],
299 307
300 # Gyp release configs for x86. 308 # Gyp release configs for x86.
301 'gyp_release_x86': [ 309 'gyp_release_x86': [
302 'gyp', 'release_bot', 'x86', 'swarming'], 310 'gyp', 'release_bot', 'x86', 'swarming'],
311 'gyp_release_x86_disassembler': [
312 'gyp', 'release_bot', 'x86', 'v8_enable_disassembler'],
303 'gyp_release_x86_gcc': [ 313 'gyp_release_x86_gcc': [
304 'gyp', 'release_bot', 'x86', 'gcc'], 314 'gyp', 'release_bot', 'x86', 'gcc'],
305 'gyp_release_x86_gcc_minimal_symbols': [ 315 'gyp_release_x86_gcc_minimal_symbols': [
306 'gyp', 'release_bot', 'x86', 'gcc', 'minimal_symbols'], 316 'gyp', 'release_bot', 'x86', 'gcc', 'minimal_symbols'],
307 'gyp_release_x86_interpreted_regexp': [ 317 'gyp_release_x86_interpreted_regexp': [
308 'gyp', 'release_bot', 'x86', 'v8_interpreted_regexp'], 318 'gyp', 'release_bot', 'x86', 'v8_interpreted_regexp'],
309 'gyp_release_x86_gcmole': [ 319 'gyp_release_x86_gcmole': [
310 'gyp', 'release_bot', 'x86', 'gcmole', 'swarming'], 320 'gyp', 'release_bot', 'x86', 'gcmole', 'swarming'],
311 'gyp_release_x86_gcmole_trybot': [ 321 'gyp_release_x86_gcmole_trybot': [
312 'gyp', 'release_trybot', 'x86', 'gcmole', 'swarming'], 322 'gyp', 'release_trybot', 'x86', 'gcmole', 'swarming'],
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
533 # TODO(machenbach): Add this to gn. 543 # TODO(machenbach): Add this to gn.
534 'gn_args': 'has_valgrind=true', 544 'gn_args': 'has_valgrind=true',
535 'gyp_defines': 'has_valgrind=1', 545 'gyp_defines': 'has_valgrind=1',
536 }, 546 },
537 547
538 'v8_no_i18n': { 548 'v8_no_i18n': {
539 'gn_args': 'v8_enable_i18n_support=false', 549 'gn_args': 'v8_enable_i18n_support=false',
540 'gyp_defines': 'v8_enable_i18n_support=0', 550 'gyp_defines': 'v8_enable_i18n_support=0',
541 }, 551 },
542 552
553 'v8_enable_disassembler': {
554 'gn_args': 'v8_enable_disassembler=true',
555 'gyp_defines': 'v8_enable_disassembler=1',
556 },
557
543 'v8_enable_slow_dchecks': { 558 'v8_enable_slow_dchecks': {
544 'gn_args': 'v8_enable_slow_dchecks=true', 559 'gn_args': 'v8_enable_slow_dchecks=true',
545 'gyp_defines': 'v8_enable_slow_dchecks=1', 560 'gyp_defines': 'v8_enable_slow_dchecks=1',
546 }, 561 },
547 562
548 'v8_enable_verify_predictable': { 563 'v8_enable_verify_predictable': {
549 'gn_args': 'v8_enable_verify_predictable=true', 564 'gn_args': 'v8_enable_verify_predictable=true',
550 'gyp_defines': 'v8_enable_verify_predictable=1', 565 'gyp_defines': 'v8_enable_verify_predictable=1',
551 }, 566 },
552 567
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
595 'gn_args': 'target_cpu="x64"', 610 'gn_args': 'target_cpu="x64"',
596 'gyp_defines': 'target_arch=x64', 611 'gyp_defines': 'target_arch=x64',
597 }, 612 },
598 613
599 'x86': { 614 'x86': {
600 'gn_args': 'target_cpu="x86"', 615 'gn_args': 'target_cpu="x86"',
601 'gyp_defines': 'target_arch=ia32', 616 'gyp_defines': 'target_arch=ia32',
602 }, 617 },
603 }, 618 },
604 } 619 }
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