| 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 WebRTC builder configurations so they can be reused | 5 # Contains the bulk of the WebRTC 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 RECIPE_CONFIGS = freeze({ | 10 RECIPE_CONFIGS = freeze({ |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 'Win64 Release (GN)': { | 112 'Win64 Release (GN)': { |
| 113 'recipe_config': 'webrtc', | 113 'recipe_config': 'webrtc', |
| 114 'chromium_config_kwargs': { | 114 'chromium_config_kwargs': { |
| 115 'BUILD_CONFIG': 'Release', | 115 'BUILD_CONFIG': 'Release', |
| 116 'TARGET_BITS': 64, | 116 'TARGET_BITS': 64, |
| 117 }, | 117 }, |
| 118 'chromium_apply_config': ['webrtc_gn'], | 118 'chromium_apply_config': ['webrtc_gn'], |
| 119 'bot_type': 'builder', | 119 'bot_type': 'builder', |
| 120 'testing': {'platform': 'win'}, | 120 'testing': {'platform': 'win'}, |
| 121 }, | 121 }, |
| 122 'Win32 Debug (Clang)': { |
| 123 'recipe_config': 'webrtc_clang', |
| 124 'chromium_config_kwargs': { |
| 125 'BUILD_CONFIG': 'Debug', |
| 126 'TARGET_BITS': 32, |
| 127 }, |
| 128 'bot_type': 'builder', |
| 129 'testing': {'platform': 'win'}, |
| 130 }, |
| 131 'Win32 Release (Clang)': { |
| 132 'recipe_config': 'webrtc_clang', |
| 133 'chromium_config_kwargs': { |
| 134 'BUILD_CONFIG': 'Release', |
| 135 'TARGET_BITS': 32, |
| 136 }, |
| 137 'bot_type': 'builder', |
| 138 'testing': {'platform': 'win'}, |
| 139 }, |
| 140 'Win64 Debug (Clang)': { |
| 141 'recipe_config': 'webrtc_clang', |
| 142 'chromium_config_kwargs': { |
| 143 'BUILD_CONFIG': 'Debug', |
| 144 'TARGET_BITS': 64, |
| 145 }, |
| 146 'bot_type': 'builder', |
| 147 'testing': {'platform': 'win'}, |
| 148 }, |
| 149 'Win64 Release (Clang)': { |
| 150 'recipe_config': 'webrtc_clang', |
| 151 'chromium_config_kwargs': { |
| 152 'BUILD_CONFIG': 'Release', |
| 153 'TARGET_BITS': 64, |
| 154 }, |
| 155 'bot_type': 'builder', |
| 156 'testing': {'platform': 'win'}, |
| 157 }, |
| 122 'Win32 Release [large tests]': { | 158 'Win32 Release [large tests]': { |
| 123 'recipe_config': 'webrtc_baremetal', | 159 'recipe_config': 'webrtc_baremetal', |
| 124 'chromium_config_kwargs': { | 160 'chromium_config_kwargs': { |
| 125 'BUILD_CONFIG': 'Release', | 161 'BUILD_CONFIG': 'Release', |
| 126 'TARGET_BITS': 32, | 162 'TARGET_BITS': 32, |
| 127 }, | 163 }, |
| 128 'webrtc_config_kwargs': { | 164 'webrtc_config_kwargs': { |
| 129 'PERF_ID': 'webrtc-win-large-tests', | 165 'PERF_ID': 'webrtc-win-large-tests', |
| 130 }, | 166 }, |
| 131 'bot_type': 'builder_tester', | 167 'bot_type': 'builder_tester', |
| (...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 607 'recipe_config': 'webrtc', | 643 'recipe_config': 'webrtc', |
| 608 'chromium_config_kwargs': { | 644 'chromium_config_kwargs': { |
| 609 'BUILD_CONFIG': 'Release', | 645 'BUILD_CONFIG': 'Release', |
| 610 'TARGET_BITS': 32, | 646 'TARGET_BITS': 32, |
| 611 }, | 647 }, |
| 612 'bot_type': 'builder_tester', | 648 'bot_type': 'builder_tester', |
| 613 'testing': {'platform': 'win'}, | 649 'testing': {'platform': 'win'}, |
| 614 'use_isolate': True, | 650 'use_isolate': True, |
| 615 'enable_swarming': True, | 651 'enable_swarming': True, |
| 616 }, | 652 }, |
| 617 'Win32 Debug (Clang)': { | |
| 618 'recipe_config': 'webrtc_clang', | |
| 619 'chromium_config_kwargs': { | |
| 620 'BUILD_CONFIG': 'Debug', | |
| 621 'TARGET_BITS': 32, | |
| 622 }, | |
| 623 'bot_type': 'builder', | |
| 624 'testing': {'platform': 'win'}, | |
| 625 }, | |
| 626 'Win32 Release (Clang)': { | |
| 627 'recipe_config': 'webrtc_clang', | |
| 628 'chromium_config_kwargs': { | |
| 629 'BUILD_CONFIG': 'Release', | |
| 630 'TARGET_BITS': 32, | |
| 631 }, | |
| 632 'bot_type': 'builder', | |
| 633 'testing': {'platform': 'win'}, | |
| 634 }, | |
| 635 'Win64 Debug (Clang)': { | |
| 636 'recipe_config': 'webrtc_clang', | |
| 637 'chromium_config_kwargs': { | |
| 638 'BUILD_CONFIG': 'Debug', | |
| 639 'TARGET_BITS': 64, | |
| 640 }, | |
| 641 'bot_type': 'builder', | |
| 642 'testing': {'platform': 'win'}, | |
| 643 }, | |
| 644 'Win64 Release (Clang)': { | |
| 645 'recipe_config': 'webrtc_clang', | |
| 646 'chromium_config_kwargs': { | |
| 647 'BUILD_CONFIG': 'Release', | |
| 648 'TARGET_BITS': 64, | |
| 649 }, | |
| 650 'bot_type': 'builder', | |
| 651 'testing': {'platform': 'win'}, | |
| 652 }, | |
| 653 'Mac64 Release (swarming)': { | 653 'Mac64 Release (swarming)': { |
| 654 'recipe_config': 'webrtc', | 654 'recipe_config': 'webrtc', |
| 655 'chromium_config_kwargs': { | 655 'chromium_config_kwargs': { |
| 656 'BUILD_CONFIG': 'Release', | 656 'BUILD_CONFIG': 'Release', |
| 657 'TARGET_BITS': 64, | 657 'TARGET_BITS': 64, |
| 658 }, | 658 }, |
| 659 'bot_type': 'builder_tester', | 659 'bot_type': 'builder_tester', |
| 660 'testing': {'platform': 'mac'}, | 660 'testing': {'platform': 'mac'}, |
| 661 'use_isolate': True, | 661 'use_isolate': True, |
| 662 'enable_swarming': True, | 662 'enable_swarming': True, |
| (...skipping 783 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1446 'TARGET_BITS': 32, | 1446 'TARGET_BITS': 32, |
| 1447 }, | 1447 }, |
| 1448 'chromium_apply_config': ['webrtc_gn'], | 1448 'chromium_apply_config': ['webrtc_gn'], |
| 1449 'bot_type': 'builder', | 1449 'bot_type': 'builder', |
| 1450 'testing': {'platform': 'linux'}, | 1450 'testing': {'platform': 'linux'}, |
| 1451 }, | 1451 }, |
| 1452 }, | 1452 }, |
| 1453 }, | 1453 }, |
| 1454 }) | 1454 }) |
| 1455 | 1455 |
| OLD | NEW |