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 30 matching lines...) Expand all Loading... | |
41 'gn', 'release_bot', 'swarming', 'x64'], | 41 'gn', 'release_bot', 'swarming', 'x64'], |
42 }, | 42 }, |
43 | 43 |
44 'mixins': { | 44 'mixins': { |
45 'dcheck_always_on': { | 45 'dcheck_always_on': { |
46 'gn_args': 'dcheck_always_on=true', | 46 'gn_args': 'dcheck_always_on=true', |
47 'gyp_defines': 'dcheck_always_on=1', | 47 'gyp_defines': 'dcheck_always_on=1', |
48 }, | 48 }, |
49 | 49 |
50 'debug': { | 50 'debug': { |
51 'gyp_defines': 'v8_enable_slow_dchecks=1 v8_optimized_debug=1', | |
52 'gn_args': 'is_debug=true', | 51 'gn_args': 'is_debug=true', |
53 }, | 52 }, |
54 | 53 |
55 'debug_bot': { | 54 'debug_bot': { |
56 'mixins': [ | 55 'mixins': [ |
57 'debug', 'static', 'goma', 'v8_enable_slow_dchecks', | 56 'debug', 'static', 'goma', 'v8_enable_slow_dchecks', |
Michael Achenbach
2016/06/17 12:25:11
Those flags are specified already for the debug_bo
| |
58 'v8_optimized_debug'], | 57 'v8_optimized_debug'], |
59 }, | 58 }, |
60 | 59 |
61 'debug_trybot': { | 60 'debug_trybot': { |
62 'mixins': ['debug_bot', 'minimal_symbols'], | 61 'mixins': ['debug_bot', 'minimal_symbols'], |
63 }, | 62 }, |
64 | 63 |
65 'gn': {'type': 'gn'}, | 64 'gn': {'type': 'gn'}, |
66 | 65 |
67 'goma': { | 66 'goma': { |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
136 'gn_args': 'target_cpu="x64"', | 135 'gn_args': 'target_cpu="x64"', |
137 'gyp_defines': 'target_arch=x64', | 136 'gyp_defines': 'target_arch=x64', |
138 }, | 137 }, |
139 | 138 |
140 #'x86': { | 139 #'x86': { |
141 # 'gn_args': 'target_cpu="x86"', | 140 # 'gn_args': 'target_cpu="x86"', |
142 # 'gyp_defines': 'target_arch=ia32', | 141 # 'gyp_defines': 'target_arch=ia32', |
143 #}, | 142 #}, |
144 }, | 143 }, |
145 } | 144 } |
OLD | NEW |