| 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 796 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 807 'test_generators': [ | 807 'test_generators': [ |
| 808 steps.generate_gtest, | 808 steps.generate_gtest, |
| 809 steps.generate_isolated_script, | 809 steps.generate_isolated_script, |
| 810 steps.generate_script, | 810 steps.generate_script, |
| 811 ], | 811 ], |
| 812 'testing': { | 812 'testing': { |
| 813 'platform': 'linux', | 813 'platform': 'linux', |
| 814 }, | 814 }, |
| 815 'use_isolate': True, | 815 'use_isolate': True, |
| 816 'enable_swarming': True, | 816 'enable_swarming': True, |
| 817 'checkout_dir': 'android', |
| 817 }, | 818 }, |
| 818 'Android Release (Nexus 6)': { | 819 'Android Release (Nexus 6)': { |
| 819 'chromium_config': 'android', | 820 'chromium_config': 'android', |
| 820 'chromium_apply_config': ['chrome_with_codecs', 'mb'], | 821 'chromium_apply_config': ['chrome_with_codecs', 'mb'], |
| 821 'gclient_config': 'chromium', | 822 'gclient_config': 'chromium', |
| 822 'gclient_apply_config': ['android'], | 823 'gclient_apply_config': ['android'], |
| 823 'chromium_config_kwargs': { | 824 'chromium_config_kwargs': { |
| 824 'BUILD_CONFIG': 'Release', | 825 'BUILD_CONFIG': 'Release', |
| 825 'TARGET_BITS': 32, | 826 'TARGET_BITS': 32, |
| 826 'TARGET_PLATFORM': 'android', | 827 'TARGET_PLATFORM': 'android', |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1093 'aura_builder', | 1094 'aura_builder', |
| 1094 ], | 1095 ], |
| 1095 'testing': { | 1096 'testing': { |
| 1096 'platform': 'linux', | 1097 'platform': 'linux', |
| 1097 }, | 1098 }, |
| 1098 'enable_swarming': False, | 1099 'enable_swarming': False, |
| 1099 'use_isolate': True, | 1100 'use_isolate': True, |
| 1100 }, | 1101 }, |
| 1101 }, | 1102 }, |
| 1102 } | 1103 } |
| OLD | NEW |