| 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 825 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 836 'bot_type': 'tester', | 836 'bot_type': 'tester', |
| 837 'parent_buildername': 'GPU Mac Builder', | 837 'parent_buildername': 'GPU Mac Builder', |
| 838 'testing': { | 838 'testing': { |
| 839 'platform': 'mac', | 839 'platform': 'mac', |
| 840 }, | 840 }, |
| 841 # Swarming is deliberately NOT enabled on this one-off configuration. | 841 # Swarming is deliberately NOT enabled on this one-off configuration. |
| 842 # Multiple copies of the machines have to be deployed into swarming | 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. | 843 # in order to keep up with the faster cycle time of the tests. |
| 844 'enable_swarming': False, | 844 'enable_swarming': False, |
| 845 }, | 845 }, |
| 846 'Mac GPU ASAN Release': { |
| 847 'chromium_config': 'chromium', |
| 848 'chromium_apply_config': ['ninja_confirm_noop'], |
| 849 'gclient_config': 'chromium', |
| 850 'chromium_config_kwargs': { |
| 851 'BUILD_CONFIG': 'Release', |
| 852 'TARGET_BITS': 64, |
| 853 }, |
| 854 'test_generators': [ |
| 855 steps.generate_gtest, |
| 856 steps.generate_script, |
| 857 steps.generate_isolated_script, |
| 858 ], |
| 859 'bot_type': 'builder_tester', |
| 860 'testing': { |
| 861 'platform': 'mac', |
| 862 }, |
| 863 'enable_swarming': True, |
| 864 'serialize_tests': True, |
| 865 }, |
| 846 'Android Release (Nexus 5)': { | 866 'Android Release (Nexus 5)': { |
| 847 'chromium_config': 'android', | 867 'chromium_config': 'android', |
| 848 'chromium_apply_config': ['chrome_with_codecs', 'mb'], | 868 'chromium_apply_config': ['chrome_with_codecs', 'mb'], |
| 849 'gclient_config': 'chromium', | 869 'gclient_config': 'chromium', |
| 850 'gclient_apply_config': ['android'], | 870 'gclient_apply_config': ['android'], |
| 851 'chromium_config_kwargs': { | 871 'chromium_config_kwargs': { |
| 852 'BUILD_CONFIG': 'Release', | 872 'BUILD_CONFIG': 'Release', |
| 853 'TARGET_BITS': 32, | 873 'TARGET_BITS': 32, |
| 854 'TARGET_PLATFORM': 'android', | 874 'TARGET_PLATFORM': 'android', |
| 855 }, | 875 }, |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1170 'aura_builder', | 1190 'aura_builder', |
| 1171 ], | 1191 ], |
| 1172 'testing': { | 1192 'testing': { |
| 1173 'platform': 'linux', | 1193 'platform': 'linux', |
| 1174 }, | 1194 }, |
| 1175 'enable_swarming': False, | 1195 'enable_swarming': False, |
| 1176 'use_isolate': True, | 1196 'use_isolate': True, |
| 1177 }, | 1197 }, |
| 1178 }, | 1198 }, |
| 1179 } | 1199 } |
| OLD | NEW |