| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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-linux-archive', | 9 'build_gs_bucket': 'chromium-linux-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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 'TARGET_BITS': 32, | 161 'TARGET_BITS': 32, |
| 162 'TARGET_PLATFORM': 'android', | 162 'TARGET_PLATFORM': 'android', |
| 163 }, | 163 }, |
| 164 'android_config': 'main_builder', | 164 'android_config': 'main_builder', |
| 165 'bot_type': 'builder', | 165 'bot_type': 'builder', |
| 166 'testing': { | 166 'testing': { |
| 167 'platform': 'linux', | 167 'platform': 'linux', |
| 168 }, | 168 }, |
| 169 'use_isolate': True, | 169 'use_isolate': True, |
| 170 'enable_swarming': True, | 170 'enable_swarming': True, |
| 171 'checkout_dir': 'android', |
| 171 }, | 172 }, |
| 172 'Android Tests (dbg)': { | 173 'Android Tests (dbg)': { |
| 173 'chromium_config': 'android', | 174 'chromium_config': 'android', |
| 174 'chromium_apply_config': ['chrome_with_codecs', 'mb'], | 175 'chromium_apply_config': ['chrome_with_codecs', 'mb'], |
| 175 'gclient_config': 'chromium', | 176 'gclient_config': 'chromium', |
| 176 'gclient_apply_config': ['android'], | 177 'gclient_apply_config': ['android'], |
| 177 'chromium_config_kwargs': { | 178 'chromium_config_kwargs': { |
| 178 'BUILD_CONFIG': 'Debug', | 179 'BUILD_CONFIG': 'Debug', |
| 179 'TARGET_BITS': 32, | 180 'TARGET_BITS': 32, |
| 180 'TARGET_PLATFORM': 'android', | 181 'TARGET_PLATFORM': 'android', |
| (...skipping 26 matching lines...) Expand all Loading... |
| 207 'TARGET_BITS': 32, | 208 'TARGET_BITS': 32, |
| 208 'TARGET_PLATFORM': 'android', | 209 'TARGET_PLATFORM': 'android', |
| 209 }, | 210 }, |
| 210 'android_config': 'main_builder', | 211 'android_config': 'main_builder', |
| 211 'bot_type': 'builder', | 212 'bot_type': 'builder', |
| 212 'testing': { | 213 'testing': { |
| 213 'platform': 'linux', | 214 'platform': 'linux', |
| 214 }, | 215 }, |
| 215 'use_isolate': True, | 216 'use_isolate': True, |
| 216 'enable_swarming': True, | 217 'enable_swarming': True, |
| 218 'checkout_dir': 'android', |
| 217 }, | 219 }, |
| 218 'Android Tests': { | 220 'Android Tests': { |
| 219 'chromium_config': 'android', | 221 'chromium_config': 'android', |
| 220 'chromium_apply_config': ['mb'], | 222 'chromium_apply_config': ['mb'], |
| 221 'gclient_config': 'chromium', | 223 'gclient_config': 'chromium', |
| 222 'gclient_apply_config': ['android'], | 224 'gclient_apply_config': ['android'], |
| 223 'chromium_config_kwargs': { | 225 'chromium_config_kwargs': { |
| 224 'BUILD_CONFIG': 'Release', | 226 'BUILD_CONFIG': 'Release', |
| 225 'TARGET_BITS': 32, | 227 'TARGET_BITS': 32, |
| 226 'TARGET_PLATFORM': 'android', | 228 'TARGET_PLATFORM': 'android', |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 'TARGET_BITS': 32, | 313 'TARGET_BITS': 32, |
| 312 'TARGET_PLATFORM': 'android', | 314 'TARGET_PLATFORM': 'android', |
| 313 }, | 315 }, |
| 314 'android_config': 'cast_builder', | 316 'android_config': 'cast_builder', |
| 315 'testing': { | 317 'testing': { |
| 316 'platform': 'linux', | 318 'platform': 'linux', |
| 317 }, | 319 }, |
| 318 }, | 320 }, |
| 319 }, | 321 }, |
| 320 } | 322 } |
| OLD | NEW |