| 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 827 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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': { | 846 'Mac GPU ASAN Release': { |
| 847 'chromium_config': 'chromium', | 847 'chromium_config': 'chromium', |
| 848 'chromium_apply_config': ['ninja_confirm_noop'], | 848 'chromium_apply_config': ['mb', 'ninja_confirm_noop'], |
| 849 'gclient_config': 'chromium', | 849 'gclient_config': 'chromium', |
| 850 'gclient_apply_config': ['chrome_internal', 'angle_top_of_tree'], |
| 850 'chromium_config_kwargs': { | 851 'chromium_config_kwargs': { |
| 851 'BUILD_CONFIG': 'Release', | 852 'BUILD_CONFIG': 'Release', |
| 852 'TARGET_BITS': 64, | 853 'TARGET_BITS': 64, |
| 853 }, | 854 }, |
| 854 'test_generators': [ | 855 'test_generators': [ |
| 855 steps.generate_gtest, | 856 steps.generate_gtest, |
| 856 steps.generate_script, | 857 steps.generate_script, |
| 857 steps.generate_isolated_script, | 858 steps.generate_isolated_script, |
| 858 ], | 859 ], |
| 859 'bot_type': 'builder_tester', | 860 'bot_type': 'builder_tester', |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1190 'aura_builder', | 1191 'aura_builder', |
| 1191 ], | 1192 ], |
| 1192 'testing': { | 1193 'testing': { |
| 1193 'platform': 'linux', | 1194 'platform': 'linux', |
| 1194 }, | 1195 }, |
| 1195 'enable_swarming': False, | 1196 'enable_swarming': False, |
| 1196 'use_isolate': True, | 1197 'use_isolate': True, |
| 1197 }, | 1198 }, |
| 1198 }, | 1199 }, |
| 1199 } | 1200 } |
| OLD | NEW |