| 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 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 'gn', 'release_bot', 'simulate_mips64el', 'swarming'], | 258 'gn', 'release_bot', 'simulate_mips64el', 'swarming'], |
| 259 | 259 |
| 260 # GN debug configs for arm. | 260 # GN debug configs for arm. |
| 261 'gn_debug_arm': [ | 261 'gn_debug_arm': [ |
| 262 'gn', 'debug_bot', 'arm', 'crosscompile', 'hard_float', 'swarming'], | 262 'gn', 'debug_bot', 'arm', 'crosscompile', 'hard_float', 'swarming'], |
| 263 | 263 |
| 264 # GN release configs for arm. | 264 # GN release configs for arm. |
| 265 'gn_release_arm': [ | 265 'gn_release_arm': [ |
| 266 'gn', 'release_bot', 'arm', 'crosscompile', 'hard_float', 'swarming'], | 266 'gn', 'release_bot', 'arm', 'crosscompile', 'hard_float', 'swarming'], |
| 267 'gn_release_android_arm': [ | 267 'gn_release_android_arm': [ |
| 268 'gn', 'release_bot', 'arm', 'android', 'crosscompile', 'swarming'], | 268 'gn', 'release_bot', 'arm', 'android', 'crosscompile', |
| 269 'minimal_symbols', 'swarming'], |
| 269 'gn_release_android_arm64': [ | 270 'gn_release_android_arm64': [ |
| 270 'gn', 'release_bot', 'arm64', 'android', 'crosscompile', 'swarming'], | 271 'gn', 'release_bot', 'arm64', 'android', 'crosscompile', |
| 272 'minimal_symbols', 'swarming'], |
| 271 | 273 |
| 272 # GN release configs for x64. | 274 # GN release configs for x64. |
| 273 'gn_release_x64': [ | 275 'gn_release_x64': [ |
| 274 'gn', 'release_bot', 'x64', 'swarming'], | 276 'gn', 'release_bot', 'x64', 'swarming'], |
| 275 'gn_release_x64_asan': [ | 277 'gn_release_x64_asan': [ |
| 276 'gn', 'release_bot', 'x64', 'asan', 'lsan', 'swarming'], | 278 'gn', 'release_bot', 'x64', 'asan', 'lsan', 'swarming'], |
| 277 'gn_release_x64_asan_minimal_symbols': [ | 279 'gn_release_x64_asan_minimal_symbols': [ |
| 278 'gn', 'release_bot', 'x64', 'asan', 'lsan', 'minimal_symbols', | 280 'gn', 'release_bot', 'x64', 'asan', 'lsan', 'minimal_symbols', |
| 279 'swarming'], | 281 'swarming'], |
| 280 'gn_release_x64_asan_no_lsan': [ | 282 'gn_release_x64_asan_no_lsan': [ |
| (...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 673 'gn_args': 'target_cpu="x64"', | 675 'gn_args': 'target_cpu="x64"', |
| 674 'gyp_defines': 'target_arch=x64', | 676 'gyp_defines': 'target_arch=x64', |
| 675 }, | 677 }, |
| 676 | 678 |
| 677 'x86': { | 679 'x86': { |
| 678 'gn_args': 'target_cpu="x86"', | 680 'gn_args': 'target_cpu="x86"', |
| 679 'gyp_defines': 'target_arch=ia32', | 681 'gyp_defines': 'target_arch=ia32', |
| 680 }, | 682 }, |
| 681 }, | 683 }, |
| 682 } | 684 } |
| OLD | NEW |