| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium 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 # Contains the bulk of the V8 builder configurations so they can be reused | 5 # Contains the bulk of the V8 builder configurations so they can be reused |
| 6 # from multiple recipes. | 6 # from multiple recipes. |
| 7 | 7 |
| 8 from infra.libs.infra_types import freeze | 8 from infra.libs.infra_types import freeze |
| 9 | 9 |
| 10 BUILDERS = { | 10 BUILDERS = { |
| (...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 617 'tests': ['unittests', 'v8testing', 'webkit', 'mozilla'], | 617 'tests': ['unittests', 'v8testing', 'webkit', 'mozilla'], |
| 618 'testing': {'platform': 'win'}, | 618 'testing': {'platform': 'win'}, |
| 619 }, | 619 }, |
| 620 'V8 Win64': { | 620 'V8 Win64': { |
| 621 'chromium_apply_config': ['msvs2013'], | 621 'chromium_apply_config': ['msvs2013'], |
| 622 'v8_config_kwargs': { | 622 'v8_config_kwargs': { |
| 623 'BUILD_CONFIG': 'Release', | 623 'BUILD_CONFIG': 'Release', |
| 624 'TARGET_BITS': 64, | 624 'TARGET_BITS': 64, |
| 625 }, | 625 }, |
| 626 'bot_type': 'builder_tester', | 626 'bot_type': 'builder_tester', |
| 627 'tests': ['unittests', 'v8testing', 'webkit', 'mozilla'], | 627 'tests': ['unittests', 'v8testing', 'webkit', 'test262', 'mozilla'], |
| 628 'testing': {'platform': 'win'}, | 628 'testing': {'platform': 'win'}, |
| 629 }, | 629 }, |
| 630 'V8 Win64 - debug': { | 630 'V8 Win64 - debug': { |
| 631 'chromium_apply_config': ['msvs2013'], | 631 'chromium_apply_config': ['msvs2013'], |
| 632 'v8_config_kwargs': { | 632 'v8_config_kwargs': { |
| 633 'BUILD_CONFIG': 'Debug', | 633 'BUILD_CONFIG': 'Debug', |
| 634 'TARGET_BITS': 64, | 634 'TARGET_BITS': 64, |
| 635 }, | 635 }, |
| 636 'bot_type': 'builder_tester', | 636 'bot_type': 'builder_tester', |
| 637 'tests': ['unittests', 'v8testing', 'webkit', 'mozilla'], | 637 'tests': ['unittests', 'v8testing', 'webkit', 'test262', 'mozilla'], |
| 638 'testing': {'platform': 'win'}, | 638 'testing': {'platform': 'win'}, |
| 639 }, | 639 }, |
| 640 ####### Category: Mac | 640 ####### Category: Mac |
| 641 'V8 Mac': { | 641 'V8 Mac': { |
| 642 'chromium_apply_config': ['v8_ninja', 'clang', 'goma'], | 642 'chromium_apply_config': ['v8_ninja', 'clang', 'goma'], |
| 643 'v8_config_kwargs': { | 643 'v8_config_kwargs': { |
| 644 'BUILD_CONFIG': 'Release', | 644 'BUILD_CONFIG': 'Release', |
| 645 'TARGET_BITS': 32, | 645 'TARGET_BITS': 32, |
| 646 }, | 646 }, |
| 647 'bot_type': 'builder_tester', | 647 'bot_type': 'builder_tester', |
| (...skipping 1278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1926 dart_linux_release['chromium_apply_config'].extend(['v8_goma']) | 1926 dart_linux_release['chromium_apply_config'].extend(['v8_goma']) |
| 1927 | 1927 |
| 1928 dart_mac_release = BUILDERS['client.dart.fyi']['builders']['v8-mac-release'] | 1928 dart_mac_release = BUILDERS['client.dart.fyi']['builders']['v8-mac-release'] |
| 1929 dart_mac_release['chromium_apply_config'].extend(['v8_ninja', 'clang', 'goma']) | 1929 dart_mac_release['chromium_apply_config'].extend(['v8_ninja', 'clang', 'goma']) |
| 1930 | 1930 |
| 1931 dart_win_release = BUILDERS['client.dart.fyi']['builders']['v8-win-release'] | 1931 dart_win_release = BUILDERS['client.dart.fyi']['builders']['v8-win-release'] |
| 1932 dart_win_release['chromium_apply_config'].extend(['msvs2013']) | 1932 dart_win_release['chromium_apply_config'].extend(['msvs2013']) |
| 1933 | 1933 |
| 1934 BUILDERS = freeze(BUILDERS) | 1934 BUILDERS = freeze(BUILDERS) |
| 1935 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) | 1935 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) |
| OLD | NEW |