| 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 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 485 'release_trybot': { | 485 'release_trybot': { |
| 486 'mixins': ['release_bot', 'minimal_symbols', 'dcheck_always_on'], | 486 'mixins': ['release_bot', 'minimal_symbols', 'dcheck_always_on'], |
| 487 }, | 487 }, |
| 488 | 488 |
| 489 'shared': { | 489 'shared': { |
| 490 'gn_args': 'is_component_build=true', | 490 'gn_args': 'is_component_build=true', |
| 491 'gyp_defines': 'component=shared_library', | 491 'gyp_defines': 'component=shared_library', |
| 492 }, | 492 }, |
| 493 | 493 |
| 494 'simulate_arm': { | 494 'simulate_arm': { |
| 495 'gn_args': 'target_cpu="ia32" v8_target_cpu="arm"', | 495 'gn_args': 'target_cpu="x86" v8_target_cpu="arm"', |
| 496 'gyp_defines': 'target_arch=ia32 v8_target_arch=arm', | 496 'gyp_defines': 'target_arch=ia32 v8_target_arch=arm', |
| 497 }, | 497 }, |
| 498 | 498 |
| 499 'simulate_arm64': { | 499 'simulate_arm64': { |
| 500 'gn_args': 'target_cpu="x64" v8_target_cpu="arm64"', | 500 'gn_args': 'target_cpu="x64" v8_target_cpu="arm64"', |
| 501 'gyp_defines': 'target_arch=x64 v8_target_arch=arm64', | 501 'gyp_defines': 'target_arch=x64 v8_target_arch=arm64', |
| 502 }, | 502 }, |
| 503 | 503 |
| 504 'simulate_mipsel': { | 504 'simulate_mipsel': { |
| 505 'gn_args': 'target_cpu="ia32" v8_target_cpu="mipsel"', | 505 'gn_args': 'target_cpu="x86" v8_target_cpu="mipsel"', |
| 506 'gyp_defines': 'target_arch=ia32 v8_target_arch=mipsel', | 506 'gyp_defines': 'target_arch=ia32 v8_target_arch=mipsel', |
| 507 }, | 507 }, |
| 508 | 508 |
| 509 'simulate_mips64el': { | 509 'simulate_mips64el': { |
| 510 'gn_args': 'target_cpu="x64" v8_target_cpu="mips64el"', | 510 'gn_args': 'target_cpu="x64" v8_target_cpu="mips64el"', |
| 511 'gyp_defines': 'target_arch=x64 v8_target_arch=mips64el', | 511 'gyp_defines': 'target_arch=x64 v8_target_arch=mips64el', |
| 512 }, | 512 }, |
| 513 | 513 |
| 514 'simulate_ppc': { | 514 'simulate_ppc': { |
| 515 'gn_args': 'target_cpu="ia32" v8_target_cpu="ppc"', | 515 'gn_args': 'target_cpu="x86" v8_target_cpu="ppc"', |
| 516 'gyp_defines': 'target_arch=ia32 v8_target_arch=ppc', | 516 'gyp_defines': 'target_arch=ia32 v8_target_arch=ppc', |
| 517 }, | 517 }, |
| 518 | 518 |
| 519 'simulate_ppc64': { | 519 'simulate_ppc64': { |
| 520 'gn_args': 'target_cpu="x64" v8_target_cpu="ppc64"', | 520 'gn_args': 'target_cpu="x64" v8_target_cpu="ppc64"', |
| 521 'gyp_defines': 'target_arch=x64 v8_target_arch=ppc64', | 521 'gyp_defines': 'target_arch=x64 v8_target_arch=ppc64', |
| 522 }, | 522 }, |
| 523 | 523 |
| 524 'simulate_s390': { | 524 'simulate_s390': { |
| 525 'gn_args': 'target_cpu="ia32" v8_target_cpu="s390"', | 525 'gn_args': 'target_cpu="x86" v8_target_cpu="s390"', |
| 526 'gyp_defines': 'target_arch=ia32 v8_target_arch=s390', | 526 'gyp_defines': 'target_arch=ia32 v8_target_arch=s390', |
| 527 }, | 527 }, |
| 528 | 528 |
| 529 'simulate_s390x': { | 529 'simulate_s390x': { |
| 530 'gn_args': 'target_cpu="x64" v8_target_cpu="s390x"', | 530 'gn_args': 'target_cpu="x64" v8_target_cpu="s390x"', |
| 531 'gyp_defines': 'target_arch=x64 v8_target_arch=s390x', | 531 'gyp_defines': 'target_arch=x64 v8_target_arch=s390x', |
| 532 }, | 532 }, |
| 533 | 533 |
| 534 'simulate_x87': { | 534 'simulate_x87': { |
| 535 'gn_args': 'target_cpu="ia32" v8_target_cpu="x87"', | 535 'gn_args': 'target_cpu="x86" v8_target_cpu="x87"', |
| 536 'gyp_defines': 'target_arch=ia32 v8_target_arch=x87', | 536 'gyp_defines': 'target_arch=ia32 v8_target_arch=x87', |
| 537 }, | 537 }, |
| 538 | 538 |
| 539 'static': { | 539 'static': { |
| 540 'gn_args': 'is_component_build=false', | 540 'gn_args': 'is_component_build=false', |
| 541 'gyp_defines': 'component=static_library', | 541 'gyp_defines': 'component=static_library', |
| 542 }, | 542 }, |
| 543 | 543 |
| 544 'swarming': { | 544 'swarming': { |
| 545 'gn_args': 'v8_test_isolation_mode="prepare"', | 545 'gn_args': 'v8_test_isolation_mode="prepare"', |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 630 'gn_args': 'target_cpu="x64"', | 630 'gn_args': 'target_cpu="x64"', |
| 631 'gyp_defines': 'target_arch=x64', | 631 'gyp_defines': 'target_arch=x64', |
| 632 }, | 632 }, |
| 633 | 633 |
| 634 'x86': { | 634 'x86': { |
| 635 'gn_args': 'target_cpu="x86"', | 635 'gn_args': 'target_cpu="x86"', |
| 636 'gyp_defines': 'target_arch=ia32', | 636 'gyp_defines': 'target_arch=ia32', |
| 637 }, | 637 }, |
| 638 }, | 638 }, |
| 639 } | 639 } |
| OLD | NEW |