| 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)': { | 823 'Mac 10.11 Retina Release (AMD)': { |
| 824 'chromium_config': 'chromium', | 824 'chromium_config': 'chromium', |
| 825 'chromium_apply_config': ['ninja_confirm_noop'], | 825 'chromium_apply_config': ['ninja_confirm_noop'], |
| 826 'gclient_config': 'chromium', | 826 'gclient_config': 'chromium', |
| 827 'chromium_config_kwargs': { | 827 'chromium_config_kwargs': { |
| 828 'BUILD_CONFIG': 'Release', | 828 'BUILD_CONFIG': 'Release', |
| 829 'TARGET_BITS': 64, | 829 'TARGET_BITS': 64, |
| 830 }, | 830 }, |
| 831 'test_generators': [ | 831 'test_generators': [ |
| 832 steps.generate_gtest, | 832 steps.generate_gtest, |
| 833 steps.generate_script, | 833 steps.generate_script, |
| (...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1170 'aura_builder', | 1170 'aura_builder', |
| 1171 ], | 1171 ], |
| 1172 'testing': { | 1172 'testing': { |
| 1173 'platform': 'linux', | 1173 'platform': 'linux', |
| 1174 }, | 1174 }, |
| 1175 'enable_swarming': False, | 1175 'enable_swarming': False, |
| 1176 'use_isolate': True, | 1176 'use_isolate': True, |
| 1177 }, | 1177 }, |
| 1178 }, | 1178 }, |
| 1179 } | 1179 } |
| OLD | NEW |