| 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 from testing import V8NoExhaustiveVariants, V8Variant, V8VariantNeutral | 9 from testing import V8NoExhaustiveVariants, V8Variant, V8VariantNeutral |
| 10 | 10 |
| (...skipping 774 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 785 Mozilla, | 785 Mozilla, |
| 786 SimdJs, | 786 SimdJs, |
| 787 IgnitionTurbofan, | 787 IgnitionTurbofan, |
| 788 ], | 788 ], |
| 789 'swarming_dimensions': { | 789 'swarming_dimensions': { |
| 790 'os': 'Mac-10.9', | 790 'os': 'Mac-10.9', |
| 791 'cpu': 'x86-64', | 791 'cpu': 'x86-64', |
| 792 }, | 792 }, |
| 793 'testing': {'platform': 'mac'}, | 793 'testing': {'platform': 'mac'}, |
| 794 }, | 794 }, |
| 795 'V8 Mac64 - xcode': { | |
| 796 'chromium_apply_config': [ | |
| 797 'v8_xcode_ninja', 'default_compiler', 'goma'], | |
| 798 'v8_config_kwargs': { | |
| 799 'BUILD_CONFIG': 'Release', | |
| 800 'TARGET_BITS': 64, | |
| 801 }, | |
| 802 'bot_type': 'builder_tester', | |
| 803 'testing': {'platform': 'mac'}, | |
| 804 }, | |
| 805 ####### Category: Misc | 795 ####### Category: Misc |
| 806 'V8 Fuzzer': { | 796 'V8 Fuzzer': { |
| 807 'v8_config_kwargs': { | 797 'v8_config_kwargs': { |
| 808 'BUILD_CONFIG': 'Debug', | 798 'BUILD_CONFIG': 'Debug', |
| 809 'TARGET_BITS': 64, | 799 'TARGET_BITS': 64, |
| 810 }, | 800 }, |
| 811 'bot_type': 'tester', | 801 'bot_type': 'tester', |
| 812 'enable_swarming': True, | 802 'enable_swarming': True, |
| 813 'parent_buildername': 'V8 Linux64 - debug builder', | 803 'parent_buildername': 'V8 Linux64 - debug builder', |
| 814 'build_gs_archive': 'linux64_dbg_archive', | 804 'build_gs_archive': 'linux64_dbg_archive', |
| (...skipping 1958 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2773 win['chromium_apply_config'].extend(['msvs2013']) | 2763 win['chromium_apply_config'].extend(['msvs2013']) |
| 2774 | 2764 |
| 2775 BUILDERS = freeze(BUILDERS) | 2765 BUILDERS = freeze(BUILDERS) |
| 2776 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) | 2766 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) |
| 2777 | 2767 |
| 2778 def iter_builders(): | 2768 def iter_builders(): |
| 2779 for mastername, master_config in BUILDERS.iteritems(): | 2769 for mastername, master_config in BUILDERS.iteritems(): |
| 2780 builders = master_config['builders'] | 2770 builders = master_config['builders'] |
| 2781 for buildername, bot_config in builders.iteritems(): | 2771 for buildername, bot_config in builders.iteritems(): |
| 2782 yield mastername, builders, buildername, bot_config | 2772 yield mastername, builders, buildername, bot_config |
| OLD | NEW |