| 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 961 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 972 'tests': [V8Testing, Test262_2, IgnitionTurbofan], | 972 'tests': [V8Testing, Test262_2, IgnitionTurbofan], |
| 973 'testing': {'platform': 'linux'}, | 973 'testing': {'platform': 'linux'}, |
| 974 }, | 974 }, |
| 975 'V8 Linux - arm64 - sim - MSAN': { | 975 'V8 Linux - arm64 - sim - MSAN': { |
| 976 # 'simulate_arm' is actually implied by 'msan'. We still set it | 976 # 'simulate_arm' is actually implied by 'msan'. We still set it |
| 977 # explicitly for the sake of consistency. | 977 # explicitly for the sake of consistency. |
| 978 'chromium_apply_config': [ | 978 'chromium_apply_config': [ |
| 979 'v8_ninja', | 979 'v8_ninja', |
| 980 'clang', | 980 'clang', |
| 981 'msan', | 981 'msan', |
| 982 'msan_full_origin_tracking', |
| 983 'prebuilt_instrumented_libraries', |
| 982 'simulate_arm', | 984 'simulate_arm', |
| 983 'goma', | 985 'goma', |
| 984 'mb', | 986 'mb', |
| 985 ], | 987 ], |
| 986 'v8_config_kwargs': { | 988 'v8_config_kwargs': { |
| 987 'BUILD_CONFIG': 'Release', | 989 'BUILD_CONFIG': 'Release', |
| 988 'TARGET_BITS': 64, | 990 'TARGET_BITS': 64, |
| 989 }, | 991 }, |
| 990 'bot_type': 'builder_tester', | 992 'bot_type': 'builder_tester', |
| 991 'enable_swarming': True, | 993 'enable_swarming': True, |
| (...skipping 945 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1937 'os': 'Ubuntu-14.04', | 1939 'os': 'Ubuntu-14.04', |
| 1938 }, | 1940 }, |
| 1939 }, | 1941 }, |
| 1940 'v8_linux64_msan_rel': { | 1942 'v8_linux64_msan_rel': { |
| 1941 # 'simulate_arm' is actually implied by 'msan'. We still set it | 1943 # 'simulate_arm' is actually implied by 'msan'. We still set it |
| 1942 # explicitly for the sake of consistency. | 1944 # explicitly for the sake of consistency. |
| 1943 'chromium_apply_config': [ | 1945 'chromium_apply_config': [ |
| 1944 'v8_ninja', | 1946 'v8_ninja', |
| 1945 'clang', | 1947 'clang', |
| 1946 'msan', | 1948 'msan', |
| 1949 'msan_full_origin_tracking', |
| 1950 'prebuilt_instrumented_libraries', |
| 1947 'simulate_arm', | 1951 'simulate_arm', |
| 1948 'goma', | 1952 'goma', |
| 1949 'mb', | 1953 'mb', |
| 1950 'no_dcheck', | 1954 'no_dcheck', |
| 1951 ], | 1955 ], |
| 1952 'v8_config_kwargs': { | 1956 'v8_config_kwargs': { |
| 1953 'BUILD_CONFIG': 'Release', | 1957 'BUILD_CONFIG': 'Release', |
| 1954 'TARGET_BITS': 64, | 1958 'TARGET_BITS': 64, |
| 1955 }, | 1959 }, |
| 1956 'bot_type': 'builder_tester', | 1960 'bot_type': 'builder_tester', |
| (...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2606 win['chromium_apply_config'].extend(['msvs2013']) | 2610 win['chromium_apply_config'].extend(['msvs2013']) |
| 2607 | 2611 |
| 2608 BUILDERS = freeze(BUILDERS) | 2612 BUILDERS = freeze(BUILDERS) |
| 2609 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) | 2613 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) |
| 2610 | 2614 |
| 2611 def iter_builders(): | 2615 def iter_builders(): |
| 2612 for mastername, master_config in BUILDERS.iteritems(): | 2616 for mastername, master_config in BUILDERS.iteritems(): |
| 2613 builders = master_config['builders'] | 2617 builders = master_config['builders'] |
| 2614 for buildername, bot_config in builders.iteritems(): | 2618 for buildername, bot_config in builders.iteritems(): |
| 2615 yield mastername, builders, buildername, bot_config | 2619 yield mastername, builders, buildername, bot_config |
| OLD | NEW |