| 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 1765 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1776 'v8_mac64_dbg': { | 1776 'v8_mac64_dbg': { |
| 1777 'chromium_apply_config': ['v8_ninja', 'clang', 'goma'], | 1777 'chromium_apply_config': ['v8_ninja', 'clang', 'goma'], |
| 1778 'v8_config_kwargs': { | 1778 'v8_config_kwargs': { |
| 1779 'BUILD_CONFIG': 'Debug', | 1779 'BUILD_CONFIG': 'Debug', |
| 1780 'TARGET_BITS': 64, | 1780 'TARGET_BITS': 64, |
| 1781 }, | 1781 }, |
| 1782 'bot_type': 'builder_tester', | 1782 'bot_type': 'builder_tester', |
| 1783 'tests': ['unittests', 'v8testing', 'webkit', 'simdjs_small'], | 1783 'tests': ['unittests', 'v8testing', 'webkit', 'simdjs_small'], |
| 1784 'testing': {'platform': 'mac'}, | 1784 'testing': {'platform': 'mac'}, |
| 1785 }, | 1785 }, |
| 1786 'v8_mac64_asan_rel': { |
| 1787 'chromium_apply_config': [ |
| 1788 'v8_ninja', |
| 1789 'clang', |
| 1790 'asan', |
| 1791 'goma', |
| 1792 'no_dcheck', |
| 1793 ], |
| 1794 'v8_config_kwargs': { |
| 1795 'BUILD_CONFIG': 'Release', |
| 1796 'TARGET_BITS': 64, |
| 1797 }, |
| 1798 'bot_type': 'builder_tester', |
| 1799 'tests': ['unittests', 'v8testing'], |
| 1800 'testing': {'platform': 'mac'}, |
| 1801 }, |
| 1786 'v8_linux_arm_rel': { | 1802 'v8_linux_arm_rel': { |
| 1787 'chromium_apply_config': ['simulate_arm', 'v8_goma'], | 1803 'chromium_apply_config': ['simulate_arm', 'v8_goma'], |
| 1788 'v8_config_kwargs': { | 1804 'v8_config_kwargs': { |
| 1789 'BUILD_CONFIG': 'Release', | 1805 'BUILD_CONFIG': 'Release', |
| 1790 'TARGET_BITS': 32, | 1806 'TARGET_BITS': 32, |
| 1791 }, | 1807 }, |
| 1792 'bot_type': 'builder_tester', | 1808 'bot_type': 'builder_tester', |
| 1793 'tests': ['unittests', 'v8testing', 'webkit', 'simdjs_small'], | 1809 'tests': ['unittests', 'v8testing', 'webkit', 'simdjs_small'], |
| 1794 'testing': {'platform': 'linux'}, | 1810 'testing': {'platform': 'linux'}, |
| 1795 }, | 1811 }, |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1952 dart_linux_release['chromium_apply_config'].extend(['v8_goma']) | 1968 dart_linux_release['chromium_apply_config'].extend(['v8_goma']) |
| 1953 | 1969 |
| 1954 dart_mac_release = BUILDERS['client.dart.fyi']['builders']['v8-mac-release'] | 1970 dart_mac_release = BUILDERS['client.dart.fyi']['builders']['v8-mac-release'] |
| 1955 dart_mac_release['chromium_apply_config'].extend(['v8_ninja', 'clang', 'goma']) | 1971 dart_mac_release['chromium_apply_config'].extend(['v8_ninja', 'clang', 'goma']) |
| 1956 | 1972 |
| 1957 dart_win_release = BUILDERS['client.dart.fyi']['builders']['v8-win-release'] | 1973 dart_win_release = BUILDERS['client.dart.fyi']['builders']['v8-win-release'] |
| 1958 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013']) | 1974 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013']) |
| 1959 | 1975 |
| 1960 BUILDERS = freeze(BUILDERS) | 1976 BUILDERS = freeze(BUILDERS) |
| 1961 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) | 1977 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) |
| OLD | NEW |