| 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 685 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 696 'TARGET_BITS': 64, | 696 'TARGET_BITS': 64, |
| 697 }, | 697 }, |
| 698 'bot_type': 'builder_tester', | 698 'bot_type': 'builder_tester', |
| 699 'enable_swarming': True, | 699 'enable_swarming': True, |
| 700 'swarming_dimensions': { | 700 'swarming_dimensions': { |
| 701 'os': 'Windows-7-SP1', | 701 'os': 'Windows-7-SP1', |
| 702 }, | 702 }, |
| 703 'tests': [V8Testing_2, SimdJs, Test262, Mozilla, Ignition], | 703 'tests': [V8Testing_2, SimdJs, Test262, Mozilla, Ignition], |
| 704 'testing': {'platform': 'win'}, | 704 'testing': {'platform': 'win'}, |
| 705 }, | 705 }, |
| 706 'V8 Win64 - clang': { |
| 707 'chromium_apply_config': [ |
| 708 'clang', |
| 709 'v8_ninja', |
| 710 'goma', |
| 711 ], |
| 712 'v8_config_kwargs': { |
| 713 'BUILD_CONFIG': 'Release', |
| 714 'TARGET_BITS': 64, |
| 715 }, |
| 716 'bot_type': 'builder_tester', |
| 717 'testing': {'platform': 'win'}, |
| 718 }, |
| 706 ####### Category: Mac | 719 ####### Category: Mac |
| 707 'V8 Mac': { | 720 'V8 Mac': { |
| 708 'chromium_apply_config': ['v8_ninja', 'clang', 'goma'], | 721 'chromium_apply_config': ['v8_ninja', 'clang', 'goma'], |
| 709 'v8_config_kwargs': { | 722 'v8_config_kwargs': { |
| 710 'BUILD_CONFIG': 'Release', | 723 'BUILD_CONFIG': 'Release', |
| 711 'TARGET_BITS': 32, | 724 'TARGET_BITS': 32, |
| 712 }, | 725 }, |
| 713 'bot_type': 'builder_tester', | 726 'bot_type': 'builder_tester', |
| 714 'enable_swarming': True, | 727 'enable_swarming': True, |
| 715 'tests': [V8Testing, Test262, Mozilla, SimdJs, Ignition], | 728 'tests': [V8Testing, Test262, Mozilla, SimdJs, Ignition], |
| (...skipping 1998 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2714 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013']) | 2727 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013']) |
| 2715 | 2728 |
| 2716 BUILDERS = freeze(BUILDERS) | 2729 BUILDERS = freeze(BUILDERS) |
| 2717 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) | 2730 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) |
| 2718 | 2731 |
| 2719 def iter_builders(): | 2732 def iter_builders(): |
| 2720 for mastername, master_config in BUILDERS.iteritems(): | 2733 for mastername, master_config in BUILDERS.iteritems(): |
| 2721 builders = master_config['builders'] | 2734 builders = master_config['builders'] |
| 2722 for buildername, bot_config in builders.iteritems(): | 2735 for buildername, bot_config in builders.iteritems(): |
| 2723 yield mastername, builders, buildername, bot_config | 2736 yield mastername, builders, buildername, bot_config |
| OLD | NEW |