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 recipe_engine.types import freeze |
9 | 9 |
10 BUILDERS = { | 10 BUILDERS = { |
11 ####### Waterfall: client.v8 | 11 ####### Waterfall: client.v8 |
12 'client.v8': { | 12 'client.v8': { |
13 'builders': { | 13 'builders': { |
14 ####### Category: Linux | 14 ####### Category: Linux |
15 'V8 Linux - builder': { | 15 'V8 Linux - builder': { |
16 'chromium_apply_config': ['v8_goma'], | 16 'chromium_apply_config': ['v8_goma'], |
17 'v8_config_kwargs': { | 17 'v8_config_kwargs': { |
18 'BUILD_CONFIG': 'Release', | 18 'BUILD_CONFIG': 'Release', |
(...skipping 2007 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2026 dart_linux_release['chromium_apply_config'].extend(['v8_goma']) | 2026 dart_linux_release['chromium_apply_config'].extend(['v8_goma']) |
2027 | 2027 |
2028 dart_mac_release = BUILDERS['client.dart.fyi']['builders']['v8-mac-release'] | 2028 dart_mac_release = BUILDERS['client.dart.fyi']['builders']['v8-mac-release'] |
2029 dart_mac_release['chromium_apply_config'].extend(['v8_ninja', 'clang', 'goma']) | 2029 dart_mac_release['chromium_apply_config'].extend(['v8_ninja', 'clang', 'goma']) |
2030 | 2030 |
2031 dart_win_release = BUILDERS['client.dart.fyi']['builders']['v8-win-release'] | 2031 dart_win_release = BUILDERS['client.dart.fyi']['builders']['v8-win-release'] |
2032 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013']) | 2032 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013']) |
2033 | 2033 |
2034 BUILDERS = freeze(BUILDERS) | 2034 BUILDERS = freeze(BUILDERS) |
2035 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) | 2035 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) |
OLD | NEW |