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

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

Issue 2074403002: V8: Remove obsolete environment variables (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 6 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 | « no previous file | scripts/slave/recipe_modules/v8/config.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 recipe_engine.types import freeze
9 from testing import V8NoExhaustiveVariants, V8Variant, V8VariantNeutral 9 from testing import V8NoExhaustiveVariants, V8Variant, V8VariantNeutral
10 10
(...skipping 1053 matching lines...) Expand 10 before | Expand all | Expand 10 after
1064 }, 1064 },
1065 }, 1065 },
1066 }, 1066 },
1067 ####### Waterfall: client.v8.ports 1067 ####### Waterfall: client.v8.ports
1068 'client.v8.ports': { 1068 'client.v8.ports': {
1069 'builders': { 1069 'builders': {
1070 ####### Category: Arm 1070 ####### Category: Arm
1071 'V8 Arm - builder': { 1071 'V8 Arm - builder': {
1072 'chromium_apply_config': [ 1072 'chromium_apply_config': [
1073 'v8_ninja', 'default_compiler', 'goma', 'arm_hard_float'], 1073 'v8_ninja', 'default_compiler', 'goma', 'arm_hard_float'],
1074 'v8_apply_config': ['arm_hard_float'],
1075 'v8_config_kwargs': { 1074 'v8_config_kwargs': {
1076 'BUILD_CONFIG': 'Release', 1075 'BUILD_CONFIG': 'Release',
1077 'TARGET_ARCH': 'arm', 1076 'TARGET_ARCH': 'arm',
1078 'TARGET_BITS': 32, 1077 'TARGET_BITS': 32,
1079 }, 1078 },
1080 'bot_type': 'builder', 1079 'bot_type': 'builder',
1081 'build_gs_archive': 'arm_rel_archive', 1080 'build_gs_archive': 'arm_rel_archive',
1082 'enable_swarming': True, 1081 'enable_swarming': True,
1083 'testing': {'platform': 'linux'}, 1082 'testing': {'platform': 'linux'},
1084 'triggers': [ 1083 'triggers': [
1085 'V8 Arm', 1084 'V8 Arm',
1086 ], 1085 ],
1087 'triggers_proxy': True, 1086 'triggers_proxy': True,
1088 }, 1087 },
1089 'V8 Arm - debug builder': { 1088 'V8 Arm - debug builder': {
1090 'chromium_apply_config': [ 1089 'chromium_apply_config': [
1091 'v8_ninja', 'default_compiler', 'goma', 'arm_hard_float'], 1090 'v8_ninja', 'default_compiler', 'goma', 'arm_hard_float'],
1092 'v8_apply_config': ['arm_hard_float'],
1093 'v8_config_kwargs': { 1091 'v8_config_kwargs': {
1094 'BUILD_CONFIG': 'Debug', 1092 'BUILD_CONFIG': 'Debug',
1095 'TARGET_ARCH': 'arm', 1093 'TARGET_ARCH': 'arm',
1096 'TARGET_BITS': 32, 1094 'TARGET_BITS': 32,
1097 }, 1095 },
1098 'bot_type': 'builder', 1096 'bot_type': 'builder',
1099 'build_gs_archive': 'arm_dbg_archive', 1097 'build_gs_archive': 'arm_dbg_archive',
1100 'enable_swarming': True, 1098 'enable_swarming': True,
1101 'testing': {'platform': 'linux'}, 1099 'testing': {'platform': 'linux'},
1102 'triggers': [ 1100 'triggers': [
(...skipping 1403 matching lines...) Expand 10 before | Expand all | Expand 10 after
2506 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013']) 2504 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013'])
2507 2505
2508 BUILDERS = freeze(BUILDERS) 2506 BUILDERS = freeze(BUILDERS)
2509 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) 2507 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS)
2510 2508
2511 def iter_builders(): 2509 def iter_builders():
2512 for mastername, master_config in BUILDERS.iteritems(): 2510 for mastername, master_config in BUILDERS.iteritems():
2513 builders = master_config['builders'] 2511 builders = master_config['builders']
2514 for buildername, bot_config in builders.iteritems(): 2512 for buildername, bot_config in builders.iteritems():
2515 yield mastername, builders, buildername, bot_config 2513 yield mastername, builders, buildername, bot_config
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/v8/config.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698