| 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 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 662 ], | 662 ], |
| 663 }, | 663 }, |
| 664 'Android32 Tests (J Nexus4)': { | 664 'Android32 Tests (J Nexus4)': { |
| 665 'recipe_config': 'webrtc_android', | 665 'recipe_config': 'webrtc_android', |
| 666 'chromium_config_kwargs': { | 666 'chromium_config_kwargs': { |
| 667 'BUILD_CONFIG': 'Release', | 667 'BUILD_CONFIG': 'Release', |
| 668 'TARGET_PLATFORM': 'android', | 668 'TARGET_PLATFORM': 'android', |
| 669 'TARGET_ARCH': 'arm', | 669 'TARGET_ARCH': 'arm', |
| 670 'TARGET_BITS': 32, | 670 'TARGET_BITS': 32, |
| 671 }, | 671 }, |
| 672 'webrtc_config_kwargs': { |
| 673 'PERF_ID': 'webrtc-android-tests-nexus4-jellybean', |
| 674 }, |
| 672 'bot_type': 'tester', | 675 'bot_type': 'tester', |
| 673 'parent_buildername': 'Android32 Builder', | 676 'parent_buildername': 'Android32 Builder', |
| 674 'testing': {'platform': 'linux'}, | 677 'testing': {'platform': 'linux'}, |
| 675 }, | 678 }, |
| 676 'Android32 Tests (K Nexus5)': { | 679 'Android32 Tests (K Nexus5)': { |
| 677 'recipe_config': 'webrtc_android', | 680 'recipe_config': 'webrtc_android', |
| 678 'chromium_config_kwargs': { | 681 'chromium_config_kwargs': { |
| 679 'BUILD_CONFIG': 'Release', | 682 'BUILD_CONFIG': 'Release', |
| 680 'TARGET_PLATFORM': 'android', | 683 'TARGET_PLATFORM': 'android', |
| 681 'TARGET_ARCH': 'arm', | 684 'TARGET_ARCH': 'arm', |
| 682 'TARGET_BITS': 32, | 685 'TARGET_BITS': 32, |
| 683 }, | 686 }, |
| 687 'webrtc_config_kwargs': { |
| 688 'PERF_ID': 'webrtc-android-tests-nexus5-kitkat', |
| 689 }, |
| 684 'bot_type': 'tester', | 690 'bot_type': 'tester', |
| 685 'parent_buildername': 'Android32 Builder', | 691 'parent_buildername': 'Android32 Builder', |
| 686 'testing': {'platform': 'linux'}, | 692 'testing': {'platform': 'linux'}, |
| 687 }, | 693 }, |
| 688 'Android32 Tests (L Nexus6)': { | 694 'Android32 Tests (L Nexus6)': { |
| 689 'recipe_config': 'webrtc_android', | 695 'recipe_config': 'webrtc_android', |
| 690 'chromium_config_kwargs': { | 696 'chromium_config_kwargs': { |
| 691 'BUILD_CONFIG': 'Release', | 697 'BUILD_CONFIG': 'Release', |
| 692 'TARGET_PLATFORM': 'android', | 698 'TARGET_PLATFORM': 'android', |
| 693 'TARGET_ARCH': 'arm', | 699 'TARGET_ARCH': 'arm', |
| 694 'TARGET_BITS': 32, | 700 'TARGET_BITS': 32, |
| 695 }, | 701 }, |
| 702 'webrtc_config_kwargs': { |
| 703 'PERF_ID': 'webrtc-android-tests-nexus6-lollipop', |
| 704 }, |
| 696 'bot_type': 'tester', | 705 'bot_type': 'tester', |
| 697 'parent_buildername': 'Android32 Builder', | 706 'parent_buildername': 'Android32 Builder', |
| 698 'testing': {'platform': 'linux'}, | 707 'testing': {'platform': 'linux'}, |
| 699 }, | 708 }, |
| 700 }, | 709 }, |
| 701 }, | 710 }, |
| 702 'tryserver.webrtc': { | 711 'tryserver.webrtc': { |
| 703 'builders': { | 712 'builders': { |
| 704 'win_compile_dbg': { | 713 'win_compile_dbg': { |
| 705 'recipe_config': 'webrtc', | 714 'recipe_config': 'webrtc', |
| (...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1256 'TARGET_BITS': 32, | 1265 'TARGET_BITS': 32, |
| 1257 }, | 1266 }, |
| 1258 'chromium_apply_config': ['webrtc_gn'], | 1267 'chromium_apply_config': ['webrtc_gn'], |
| 1259 'bot_type': 'builder', | 1268 'bot_type': 'builder', |
| 1260 'testing': {'platform': 'linux'}, | 1269 'testing': {'platform': 'linux'}, |
| 1261 }, | 1270 }, |
| 1262 }, | 1271 }, |
| 1263 }, | 1272 }, |
| 1264 }) | 1273 }) |
| 1265 | 1274 |
| OLD | NEW |