| OLD | NEW |
| 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': { |
| (...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 588 'static': { | 588 'static': { |
| 589 'gn_args': 'is_component_build=false', | 589 'gn_args': 'is_component_build=false', |
| 590 'gyp_defines': 'component=static_library', | 590 'gyp_defines': 'component=static_library', |
| 591 }, | 591 }, |
| 592 | 592 |
| 593 'swarming': { | 593 'swarming': { |
| 594 'gn_args': 'v8_test_isolation_mode="prepare"', | 594 'gn_args': 'v8_test_isolation_mode="prepare"', |
| 595 'gyp_defines': 'test_isolation_mode=prepare', | 595 'gyp_defines': 'test_isolation_mode=prepare', |
| 596 }, | 596 }, |
| 597 | 597 |
| 598 # TODO(machenbach): Remove the symbolized config after the bots are gone. | 598 # TODO(machenbach): Remove the symbolized config after the bots are gone. |
| 599 'symbolized': { | 599 'symbolized': { |
| 600 'gn_args': 'symbolized=true', | 600 'gn_args': 'v8_no_inline=true', |
| 601 'gyp_defines': | 601 'gyp_defines': |
| 602 'release_extra_cflags="-fno-inline-functions -fno-inline"', | 602 'release_extra_cflags="-fno-inline-functions -fno-inline"', |
| 603 }, | 603 }, |
| 604 | 604 |
| 605 'tsan': { | 605 'tsan': { |
| 606 'gn_args': 'is_tsan=true', | 606 'gn_args': 'is_tsan=true', |
| 607 'gyp_defines': 'clang=1 tsan=1', | 607 'gyp_defines': 'clang=1 tsan=1', |
| 608 }, | 608 }, |
| 609 | 609 |
| 610 'valgrind': { | 610 'valgrind': { |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 679 'gn_args': 'target_cpu="x64"', | 679 'gn_args': 'target_cpu="x64"', |
| 680 'gyp_defines': 'target_arch=x64', | 680 'gyp_defines': 'target_arch=x64', |
| 681 }, | 681 }, |
| 682 | 682 |
| 683 'x86': { | 683 'x86': { |
| 684 'gn_args': 'target_cpu="x86"', | 684 'gn_args': 'target_cpu="x86"', |
| 685 'gyp_defines': 'target_arch=ia32', | 685 'gyp_defines': 'target_arch=ia32', |
| 686 }, | 686 }, |
| 687 }, | 687 }, |
| 688 } | 688 } |
| OLD | NEW |