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

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

Issue 1641703005: V8 Buildbot: Switch XP to Win7 for continuous 32 bit win. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 10 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/recipes/v8.expected/full_client_v8_V8_Win32.json » ('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 9
10 10
(...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after
624 'v8_config_kwargs': { 624 'v8_config_kwargs': {
625 'BUILD_CONFIG': 'Release', 625 'BUILD_CONFIG': 'Release',
626 'TARGET_BITS': 32, 626 'TARGET_BITS': 32,
627 }, 627 },
628 'bot_type': 'tester', 628 'bot_type': 'tester',
629 'parent_buildername': 'V8 Win32 - builder', 629 'parent_buildername': 'V8 Win32 - builder',
630 'enable_swarming': True, 630 'enable_swarming': True,
631 'tests': [V8Testing, Test262, Mozilla], 631 'tests': [V8Testing, Test262, Mozilla],
632 'testing': {'platform': 'linux'}, 632 'testing': {'platform': 'linux'},
633 'swarming_dimensions': { 633 'swarming_dimensions': {
634 'os': 'Windows-XP-SP3', 634 'os': 'Windows-7-SP1',
635 'cpu': 'x86-32', 635 'cpu': 'x86-64',
636 }, 636 },
637 }, 637 },
638 'V8 Win32 - nosnap - shared': { 638 'V8 Win32 - nosnap - shared': {
639 'v8_apply_config': ['no_snapshot'], 639 'v8_apply_config': ['no_snapshot'],
640 'chromium_apply_config': [ 640 'chromium_apply_config': [
641 'default_compiler', 641 'default_compiler',
642 'v8_ninja', 642 'v8_ninja',
643 'goma', 643 'goma',
644 'shared_library', 644 'shared_library',
645 'no_snapshot', 645 'no_snapshot',
(...skipping 15 matching lines...) Expand all
661 'v8_config_kwargs': { 661 'v8_config_kwargs': {
662 'BUILD_CONFIG': 'Debug', 662 'BUILD_CONFIG': 'Debug',
663 'TARGET_BITS': 32, 663 'TARGET_BITS': 32,
664 }, 664 },
665 'bot_type': 'tester', 665 'bot_type': 'tester',
666 'parent_buildername': 'V8 Win32 - debug builder', 666 'parent_buildername': 'V8 Win32 - debug builder',
667 'enable_swarming': True, 667 'enable_swarming': True,
668 'tests': [V8Testing_2, Test262, Mozilla], 668 'tests': [V8Testing_2, Test262, Mozilla],
669 'testing': {'platform': 'linux'}, 669 'testing': {'platform': 'linux'},
670 'swarming_dimensions': { 670 'swarming_dimensions': {
671 'os': 'Windows-XP-SP3', 671 'os': 'Windows-7-SP1',
672 'cpu': 'x86-32', 672 'cpu': 'x86-64',
673 }, 673 },
674 }, 674 },
675 'V8 Win64': { 675 'V8 Win64': {
676 'chromium_apply_config': [ 676 'chromium_apply_config': [
677 'default_compiler', 677 'default_compiler',
678 'v8_ninja', 678 'v8_ninja',
679 'goma', 679 'goma',
680 ], 680 ],
681 'v8_config_kwargs': { 681 'v8_config_kwargs': {
682 'BUILD_CONFIG': 'Release', 682 'BUILD_CONFIG': 'Release',
(...skipping 1821 matching lines...) Expand 10 before | Expand all | Expand 10 after
2504 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013']) 2504 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013'])
2505 2505
2506 BUILDERS = freeze(BUILDERS) 2506 BUILDERS = freeze(BUILDERS)
2507 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) 2507 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS)
2508 2508
2509 def iter_builders(): 2509 def iter_builders():
2510 for mastername, master_config in BUILDERS.iteritems(): 2510 for mastername, master_config in BUILDERS.iteritems():
2511 builders = master_config['builders'] 2511 builders = master_config['builders']
2512 for buildername, bot_config in builders.iteritems(): 2512 for buildername, bot_config in builders.iteritems():
2513 yield mastername, builders, buildername, bot_config 2513 yield mastername, builders, buildername, bot_config
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipes/v8.expected/full_client_v8_V8_Win32.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698