| 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 1527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1538 'BUILD_CONFIG': 'Release', | 1538 'BUILD_CONFIG': 'Release', |
| 1539 'TARGET_BITS': 64, | 1539 'TARGET_BITS': 64, |
| 1540 }, | 1540 }, |
| 1541 'bot_type': 'builder_tester', | 1541 'bot_type': 'builder_tester', |
| 1542 'tests': [ | 1542 'tests': [ |
| 1543 'v8initializers', | 1543 'v8initializers', |
| 1544 'unittests', | 1544 'unittests', |
| 1545 'v8testing', | 1545 'v8testing', |
| 1546 'optimize_for_size', | 1546 'optimize_for_size', |
| 1547 'webkit', | 1547 'webkit', |
| 1548 'test262_es6', |
| 1548 'simdjs', | 1549 'simdjs', |
| 1549 ], | 1550 ], |
| 1550 'testing': {'platform': 'linux'}, | 1551 'testing': {'platform': 'linux'}, |
| 1551 }, | 1552 }, |
| 1552 'v8_linux64_avx2_rel': { | 1553 'v8_linux64_avx2_rel': { |
| 1553 'chromium_apply_config': ['v8_goma'], | 1554 'chromium_apply_config': ['v8_goma'], |
| 1554 'v8_config_kwargs': { | 1555 'v8_config_kwargs': { |
| 1555 'BUILD_CONFIG': 'Release', | 1556 'BUILD_CONFIG': 'Release', |
| 1556 'TARGET_BITS': 64, | 1557 'TARGET_BITS': 64, |
| 1557 }, | 1558 }, |
| (...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1973 dart_linux_release['chromium_apply_config'].extend(['v8_goma']) | 1974 dart_linux_release['chromium_apply_config'].extend(['v8_goma']) |
| 1974 | 1975 |
| 1975 dart_mac_release = BUILDERS['client.dart.fyi']['builders']['v8-mac-release'] | 1976 dart_mac_release = BUILDERS['client.dart.fyi']['builders']['v8-mac-release'] |
| 1976 dart_mac_release['chromium_apply_config'].extend(['v8_ninja', 'clang', 'goma']) | 1977 dart_mac_release['chromium_apply_config'].extend(['v8_ninja', 'clang', 'goma']) |
| 1977 | 1978 |
| 1978 dart_win_release = BUILDERS['client.dart.fyi']['builders']['v8-win-release'] | 1979 dart_win_release = BUILDERS['client.dart.fyi']['builders']['v8-win-release'] |
| 1979 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013']) | 1980 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013']) |
| 1980 | 1981 |
| 1981 BUILDERS = freeze(BUILDERS) | 1982 BUILDERS = freeze(BUILDERS) |
| 1982 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) | 1983 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) |
| OLD | NEW |