| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 }, | 83 }, |
| 84 | 84 |
| 85 'release_bot': { | 85 'release_bot': { |
| 86 'mixins': ['release', 'static', 'goma'], | 86 'mixins': ['release', 'static', 'goma'], |
| 87 }, | 87 }, |
| 88 | 88 |
| 89 'release_trybot': { | 89 'release_trybot': { |
| 90 'mixins': ['release_bot', 'minimal_symbols', 'dcheck_always_on'], | 90 'mixins': ['release_bot', 'minimal_symbols', 'dcheck_always_on'], |
| 91 }, | 91 }, |
| 92 | 92 |
| 93 'shared': { | 93 #'shared': { |
| 94 'gn_args': 'is_component_build=true', | 94 # 'gn_args': 'is_component_build=true', |
| 95 'gyp_defines': 'component=shared_library', | 95 # 'gyp_defines': 'component=shared_library', |
| 96 }, | 96 #}, |
| 97 | 97 |
| 98 'static': { | 98 'static': { |
| 99 'gn_args': 'is_component_build=false', | 99 'gn_args': 'is_component_build=false', |
| 100 'gyp_defines': 'component=static_library', | 100 'gyp_defines': 'component=static_library', |
| 101 }, | 101 }, |
| 102 | 102 |
| 103 'swarming': { | 103 'swarming': { |
| 104 'gn_args': 'v8_test_isolation_mode="prepare"', | 104 'gn_args': 'v8_test_isolation_mode="prepare"', |
| 105 'gyp_defines': 'test_isolation_mode=prepare', | 105 'gyp_defines': 'test_isolation_mode=prepare', |
| 106 }, | 106 }, |
| (...skipping 23 matching lines...) Expand all Loading... |
| 130 'v8_snapshot_internal': { | 130 'v8_snapshot_internal': { |
| 131 'gn_args': 'v8_use_external_startup_data=false', | 131 'gn_args': 'v8_use_external_startup_data=false', |
| 132 'gyp_defines': 'v8_use_external_startup_data=0', | 132 'gyp_defines': 'v8_use_external_startup_data=0', |
| 133 }, | 133 }, |
| 134 | 134 |
| 135 'x64': { | 135 'x64': { |
| 136 'gn_args': 'target_cpu="x64"', | 136 'gn_args': 'target_cpu="x64"', |
| 137 'gyp_defines': 'target_arch=x64', | 137 'gyp_defines': 'target_arch=x64', |
| 138 }, | 138 }, |
| 139 | 139 |
| 140 'x86': { | 140 #'x86': { |
| 141 'gn_args': 'target_cpu="x86"', | 141 # 'gn_args': 'target_cpu="x86"', |
| 142 'gyp_defines': 'target_arch=ia32', | 142 # 'gyp_defines': 'target_arch=ia32', |
| 143 }, | 143 #}, |
| 144 }, | 144 }, |
| 145 } | 145 } |
| OLD | NEW |