| 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 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 Loading... |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |