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

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

Issue 1930883002: V8: Turn xcode builder into xcode-ninja builder (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 7 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/chromium_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 701 matching lines...) Expand 10 before | Expand all | Expand 10 after
712 'bot_type': 'builder_tester', 712 'bot_type': 'builder_tester',
713 'enable_swarming': True, 713 'enable_swarming': True,
714 'tests': [V8Testing, Test262, Mozilla, SimdJs, IgnitionTurbofan], 714 'tests': [V8Testing, Test262, Mozilla, SimdJs, IgnitionTurbofan],
715 'swarming_dimensions': { 715 'swarming_dimensions': {
716 'os': 'Mac-10.9', 716 'os': 'Mac-10.9',
717 'cpu': 'x86-64', 717 'cpu': 'x86-64',
718 }, 718 },
719 'testing': {'platform': 'mac'}, 719 'testing': {'platform': 'mac'},
720 }, 720 },
721 'V8 Mac64 - xcode': { 721 'V8 Mac64 - xcode': {
722 'chromium_apply_config': ['clang'], 722 'chromium_apply_config': ['v8_xcode_ninja', 'clang', 'goma'],
723 'v8_config_kwargs': { 723 'v8_config_kwargs': {
724 'BUILD_CONFIG': 'Release', 724 'BUILD_CONFIG': 'Release',
725 'TARGET_BITS': 64, 725 'TARGET_BITS': 64,
726 }, 726 },
727 'bot_type': 'builder_tester', 727 'bot_type': 'builder_tester',
728 'testing': {'platform': 'mac'}, 728 'testing': {'platform': 'mac'},
729 }, 729 },
730 ####### Category: Misc 730 ####### Category: Misc
731 'V8 Fuzzer': { 731 'V8 Fuzzer': {
732 'v8_config_kwargs': { 732 'v8_config_kwargs': {
(...skipping 1755 matching lines...) Expand 10 before | Expand all | Expand 10 after
2488 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013']) 2488 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013'])
2489 2489
2490 BUILDERS = freeze(BUILDERS) 2490 BUILDERS = freeze(BUILDERS)
2491 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) 2491 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS)
2492 2492
2493 def iter_builders(): 2493 def iter_builders():
2494 for mastername, master_config in BUILDERS.iteritems(): 2494 for mastername, master_config in BUILDERS.iteritems():
2495 builders = master_config['builders'] 2495 builders = master_config['builders']
2496 for buildername, bot_config in builders.iteritems(): 2496 for buildername, bot_config in builders.iteritems():
2497 yield mastername, builders, buildername, bot_config 2497 yield mastername, builders, buildername, bot_config
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/v8/chromium_config.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698