| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 from . import steps | 5 from . import steps |
| 6 | 6 |
| 7 SPEC = { | 7 SPEC = { |
| 8 'settings': { | 8 'settings': { |
| 9 'build_gs_bucket': 'chromium-gpu-fyi-archive', | 9 'build_gs_bucket': 'chromium-gpu-fyi-archive', |
| 10 # WARNING: src-side runtest.py is only tested with chromium CQ builders. | 10 # WARNING: src-side runtest.py is only tested with chromium CQ builders. |
| (...skipping 802 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 813 steps.generate_isolated_script, | 813 steps.generate_isolated_script, |
| 814 ], | 814 ], |
| 815 'bot_type': 'tester', | 815 'bot_type': 'tester', |
| 816 'parent_buildername': 'GPU Mac Builder (dbg)', | 816 'parent_buildername': 'GPU Mac Builder (dbg)', |
| 817 'testing': { | 817 'testing': { |
| 818 'platform': 'mac', | 818 'platform': 'mac', |
| 819 }, | 819 }, |
| 820 'enable_swarming': True, | 820 'enable_swarming': True, |
| 821 'serialize_tests': True, | 821 'serialize_tests': True, |
| 822 }, | 822 }, |
| 823 'Mac Retina Release (AMD)': { |
| 824 'chromium_config': 'chromium', |
| 825 'chromium_apply_config': ['ninja_confirm_noop'], |
| 826 'gclient_config': 'chromium', |
| 827 'chromium_config_kwargs': { |
| 828 'BUILD_CONFIG': 'Release', |
| 829 'TARGET_BITS': 64, |
| 830 }, |
| 831 'test_generators': [ |
| 832 steps.generate_gtest, |
| 833 steps.generate_script, |
| 834 steps.generate_isolated_script, |
| 835 ], |
| 836 'bot_type': 'tester', |
| 837 'parent_buildername': 'GPU Mac Builder', |
| 838 'testing': { |
| 839 'platform': 'mac', |
| 840 }, |
| 841 # Swarming is deliberately NOT enabled on this one-off configuration. |
| 842 # Multiple copies of the machines have to be deployed into swarming |
| 843 # in order to keep up with the faster cycle time of the tests. |
| 844 'enable_swarming': False, |
| 845 }, |
| 823 'Android Release (Nexus 5)': { | 846 'Android Release (Nexus 5)': { |
| 824 'chromium_config': 'android', | 847 'chromium_config': 'android', |
| 825 'chromium_apply_config': ['chrome_with_codecs', 'mb'], | 848 'chromium_apply_config': ['chrome_with_codecs', 'mb'], |
| 826 'gclient_config': 'chromium', | 849 'gclient_config': 'chromium', |
| 827 'gclient_apply_config': ['android'], | 850 'gclient_apply_config': ['android'], |
| 828 'chromium_config_kwargs': { | 851 'chromium_config_kwargs': { |
| 829 'BUILD_CONFIG': 'Release', | 852 'BUILD_CONFIG': 'Release', |
| 830 'TARGET_BITS': 32, | 853 'TARGET_BITS': 32, |
| 831 'TARGET_PLATFORM': 'android', | 854 'TARGET_PLATFORM': 'android', |
| 832 }, | 855 }, |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1147 'aura_builder', | 1170 'aura_builder', |
| 1148 ], | 1171 ], |
| 1149 'testing': { | 1172 'testing': { |
| 1150 'platform': 'linux', | 1173 'platform': 'linux', |
| 1151 }, | 1174 }, |
| 1152 'enable_swarming': False, | 1175 'enable_swarming': False, |
| 1153 'use_isolate': True, | 1176 'use_isolate': True, |
| 1154 }, | 1177 }, |
| 1155 }, | 1178 }, |
| 1156 } | 1179 } |
| OLD | NEW |