| 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 1570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1581 'build_gs_archive': 'linux_x87_nosnap_dbg_archive', | 1581 'build_gs_archive': 'linux_x87_nosnap_dbg_archive', |
| 1582 'tests': [V8Testing], | 1582 'tests': [V8Testing], |
| 1583 'testing': {'platform': 'linux'}, | 1583 'testing': {'platform': 'linux'}, |
| 1584 }, | 1584 }, |
| 1585 }, | 1585 }, |
| 1586 }, | 1586 }, |
| 1587 ####### Waterfall: tryserver.v8 | 1587 ####### Waterfall: tryserver.v8 |
| 1588 'tryserver.v8': { | 1588 'tryserver.v8': { |
| 1589 'builders': { | 1589 'builders': { |
| 1590 'v8_linux_rel_ng': { | 1590 'v8_linux_rel_ng': { |
| 1591 'chromium_apply_config': ['clang', 'v8_ninja', 'goma'], | 1591 'chromium_apply_config': ['clang', 'v8_ninja', 'goma', 'gcmole'], |
| 1592 'v8_config_kwargs': { | 1592 'v8_config_kwargs': { |
| 1593 'BUILD_CONFIG': 'Release', | 1593 'BUILD_CONFIG': 'Release', |
| 1594 'TARGET_BITS': 32, | 1594 'TARGET_BITS': 32, |
| 1595 }, | 1595 }, |
| 1596 'bot_type': 'builder', | 1596 'bot_type': 'builder', |
| 1597 'enable_swarming': True, | 1597 'enable_swarming': True, |
| 1598 'slim_swarming_builder': True, | 1598 'slim_swarming_builder': True, |
| 1599 'triggers': [ | 1599 'triggers': [ |
| 1600 'v8_linux_rel_ng_triggered', | 1600 'v8_linux_rel_ng_triggered', |
| 1601 ], | 1601 ], |
| (...skipping 10 matching lines...) Expand all Loading... |
| 1612 'tests': [ | 1612 'tests': [ |
| 1613 V8Testing, | 1613 V8Testing, |
| 1614 OptimizeForSize, | 1614 OptimizeForSize, |
| 1615 Test262Variants_2, | 1615 Test262Variants_2, |
| 1616 Mozilla, | 1616 Mozilla, |
| 1617 Benchmarks, | 1617 Benchmarks, |
| 1618 SimdJs, | 1618 SimdJs, |
| 1619 Ignition, | 1619 Ignition, |
| 1620 MjsunitSPFrameAccess, | 1620 MjsunitSPFrameAccess, |
| 1621 Test262Ignition, | 1621 Test262Ignition, |
| 1622 GCMole, |
| 1622 ], | 1623 ], |
| 1623 'testing': {'platform': 'linux'}, | 1624 'testing': {'platform': 'linux'}, |
| 1624 }, | 1625 }, |
| 1625 'v8_linux_avx2_dbg': { | 1626 'v8_linux_avx2_dbg': { |
| 1626 'chromium_apply_config': ['clang', 'v8_ninja', 'goma'], | 1627 'chromium_apply_config': ['clang', 'v8_ninja', 'goma'], |
| 1627 'v8_config_kwargs': { | 1628 'v8_config_kwargs': { |
| 1628 'BUILD_CONFIG': 'Debug', | 1629 'BUILD_CONFIG': 'Debug', |
| 1629 'TARGET_BITS': 32, | 1630 'TARGET_BITS': 32, |
| 1630 }, | 1631 }, |
| 1631 'bot_type': 'builder_tester', | 1632 'bot_type': 'builder_tester', |
| (...skipping 1080 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2712 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013']) | 2713 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013']) |
| 2713 | 2714 |
| 2714 BUILDERS = freeze(BUILDERS) | 2715 BUILDERS = freeze(BUILDERS) |
| 2715 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) | 2716 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) |
| 2716 | 2717 |
| 2717 def iter_builders(): | 2718 def iter_builders(): |
| 2718 for mastername, master_config in BUILDERS.iteritems(): | 2719 for mastername, master_config in BUILDERS.iteritems(): |
| 2719 builders = master_config['builders'] | 2720 builders = master_config['builders'] |
| 2720 for buildername, bot_config in builders.iteritems(): | 2721 for buildername, bot_config in builders.iteritems(): |
| 2721 yield mastername, builders, buildername, bot_config | 2722 yield mastername, builders, buildername, bot_config |
| OLD | NEW |