| 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 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 418 'debug_trybot': { | 418 'debug_trybot': { |
| 419 'mixins': ['debug_bot', 'minimal_symbols'], | 419 'mixins': ['debug_bot', 'minimal_symbols'], |
| 420 }, | 420 }, |
| 421 | 421 |
| 422 'edge': { | 422 'edge': { |
| 423 'gn_args': 'sanitizer_coverage_flags="edge"', | 423 'gn_args': 'sanitizer_coverage_flags="edge"', |
| 424 'gyp_defines': 'sanitizer_coverage=edge', | 424 'gyp_defines': 'sanitizer_coverage=edge', |
| 425 }, | 425 }, |
| 426 | 426 |
| 427 'gcc': { | 427 'gcc': { |
| 428 'gn_args': 'is_clang=false', | 428 'gn_args': 'is_clang=false use_sysroot=false', |
| 429 'gyp_defines': 'clang=0', | 429 'gyp_defines': 'clang=0', |
| 430 }, | 430 }, |
| 431 | 431 |
| 432 'gcmole': { | 432 'gcmole': { |
| 433 'gn_args': 'v8_gcmole=true', | 433 'gn_args': 'v8_gcmole=true', |
| 434 'gyp_defines': 'gcmole=1', | 434 'gyp_defines': 'gcmole=1', |
| 435 }, | 435 }, |
| 436 | 436 |
| 437 'gn': {'type': 'gn'}, | 437 'gn': {'type': 'gn'}, |
| 438 | 438 |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 626 'gn_args': 'target_cpu="x64"', | 626 'gn_args': 'target_cpu="x64"', |
| 627 'gyp_defines': 'target_arch=x64', | 627 'gyp_defines': 'target_arch=x64', |
| 628 }, | 628 }, |
| 629 | 629 |
| 630 'x86': { | 630 'x86': { |
| 631 'gn_args': 'target_cpu="x86"', | 631 'gn_args': 'target_cpu="x86"', |
| 632 'gyp_defines': 'target_arch=ia32', | 632 'gyp_defines': 'target_arch=ia32', |
| 633 }, | 633 }, |
| 634 }, | 634 }, |
| 635 } | 635 } |
| OLD | NEW |