Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Side by Side Diff: scripts/slave/recipe_modules/v8/builders.py

Issue 1347263002: Revert of Cross-repo recipe package system. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « scripts/slave/recipe_modules/v8/api.py ('k') | scripts/slave/recipe_modules/webrtc/api.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 recipe_engine.types import freeze 8 from infra.libs.infra_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
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)
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/v8/api.py ('k') | scripts/slave/recipe_modules/webrtc/api.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698