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 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
382 'gyp', 'release', 'x86', 'goma', 'minimal_symbols', 'shared', 'swarming', | 382 'gyp', 'release', 'x86', 'goma', 'minimal_symbols', 'shared', 'swarming', |
383 'v8_snapshot_none'], | 383 'v8_snapshot_none'], |
384 'gyp_release_x86_predictable': [ | 384 'gyp_release_x86_predictable': [ |
385 'gyp', 'release_bot', 'x86', 'v8_enable_verify_predictable'], | 385 'gyp', 'release_bot', 'x86', 'v8_enable_verify_predictable'], |
386 'gyp_release_x86_trybot': [ | 386 'gyp_release_x86_trybot': [ |
387 'gyp', 'release_trybot', 'x86', 'swarming'], | 387 'gyp', 'release_trybot', 'x86', 'swarming'], |
388 }, | 388 }, |
389 | 389 |
390 'mixins': { | 390 'mixins': { |
391 'android': { | 391 'android': { |
392 'gn_args': 'target_os="android"', | 392 'gn_args': 'target_os="android" v8_android_log_stdout=true', |
393 'gyp_defines': 'OS=android', | 393 'gyp_defines': 'OS=android v8_android_log_stdout=1', |
394 }, | 394 }, |
395 | 395 |
396 'arm': { | 396 'arm': { |
397 'gn_args': 'target_cpu="arm"', | 397 'gn_args': 'target_cpu="arm"', |
398 'gyp_defines': 'target_arch=arm', | 398 'gyp_defines': 'target_arch=arm', |
399 }, | 399 }, |
400 | 400 |
401 'arm64': { | 401 'arm64': { |
402 'gn_args': 'target_cpu="arm64"', | 402 'gn_args': 'target_cpu="arm64"', |
403 'gyp_defines': 'target_arch=arm64', | 403 'gyp_defines': 'target_arch=arm64', |
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
660 'gn_args': 'target_cpu="x64"', | 660 'gn_args': 'target_cpu="x64"', |
661 'gyp_defines': 'target_arch=x64', | 661 'gyp_defines': 'target_arch=x64', |
662 }, | 662 }, |
663 | 663 |
664 'x86': { | 664 'x86': { |
665 'gn_args': 'target_cpu="x86"', | 665 'gn_args': 'target_cpu="x86"', |
666 'gyp_defines': 'target_arch=ia32', | 666 'gyp_defines': 'target_arch=ia32', |
667 }, | 667 }, |
668 }, | 668 }, |
669 } | 669 } |
OLD | NEW |