| 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 1609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1620 'testing': {'platform': 'linux'}, | 1620 'testing': {'platform': 'linux'}, |
| 1621 }, | 1621 }, |
| 1622 'v8_linux_nodcheck_rel': { | 1622 'v8_linux_nodcheck_rel': { |
| 1623 'chromium_apply_config': ['clang', 'v8_ninja', 'goma', 'no_dcheck'], | 1623 'chromium_apply_config': ['clang', 'v8_ninja', 'goma', 'no_dcheck'], |
| 1624 'v8_config_kwargs': { | 1624 'v8_config_kwargs': { |
| 1625 'BUILD_CONFIG': 'Release', | 1625 'BUILD_CONFIG': 'Release', |
| 1626 'TARGET_BITS': 32, | 1626 'TARGET_BITS': 32, |
| 1627 }, | 1627 }, |
| 1628 'bot_type': 'builder_tester', | 1628 'bot_type': 'builder_tester', |
| 1629 'enable_swarming': True, | 1629 'enable_swarming': True, |
| 1630 'tests': [V8Testing, Test262Variants_2, Mozilla, Benchmarks, SimdJs], | 1630 'tests': [ |
| 1631 V8Testing, |
| 1632 Test262Variants_2, |
| 1633 Test262Ignition, |
| 1634 Ignition, |
| 1635 Mozilla, |
| 1636 Benchmarks, |
| 1637 SimdJs, |
| 1638 ], |
| 1631 'testing': {'platform': 'linux'}, | 1639 'testing': {'platform': 'linux'}, |
| 1632 }, | 1640 }, |
| 1633 'v8_linux_dbg': { | 1641 'v8_linux_dbg': { |
| 1634 'chromium_apply_config': ['clang', 'v8_ninja', 'goma'], | 1642 'chromium_apply_config': ['clang', 'v8_ninja', 'goma'], |
| 1635 'v8_config_kwargs': { | 1643 'v8_config_kwargs': { |
| 1636 'BUILD_CONFIG': 'Debug', | 1644 'BUILD_CONFIG': 'Debug', |
| 1637 'TARGET_BITS': 32, | 1645 'TARGET_BITS': 32, |
| 1638 }, | 1646 }, |
| 1639 'bot_type': 'builder_tester', | 1647 'bot_type': 'builder_tester', |
| 1640 'enable_swarming': True, | 1648 'enable_swarming': True, |
| (...skipping 746 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2387 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013']) | 2395 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013']) |
| 2388 | 2396 |
| 2389 BUILDERS = freeze(BUILDERS) | 2397 BUILDERS = freeze(BUILDERS) |
| 2390 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) | 2398 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) |
| 2391 | 2399 |
| 2392 def iter_builders(): | 2400 def iter_builders(): |
| 2393 for mastername, master_config in BUILDERS.iteritems(): | 2401 for mastername, master_config in BUILDERS.iteritems(): |
| 2394 builders = master_config['builders'] | 2402 builders = master_config['builders'] |
| 2395 for buildername, bot_config in builders.iteritems(): | 2403 for buildername, bot_config in builders.iteritems(): |
| 2396 yield mastername, builders, buildername, bot_config | 2404 yield mastername, builders, buildername, bot_config |
| OLD | NEW |