| 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 }, | 10 }, |
| 11 'builders': { | 11 'builders': { |
| 12 'Linux Builder': { | 12 'Linux Builder': { |
| 13 'recipe_config': 'chromium', | 13 'recipe_config': 'chromium', |
| 14 'chromium_config_kwargs': { | 14 'chromium_config_kwargs': { |
| 15 'BUILD_CONFIG': 'Release', | 15 'BUILD_CONFIG': 'Release', |
| 16 'TARGET_BITS': 64, | 16 'TARGET_BITS': 64, |
| 17 }, | 17 }, |
| 18 'bot_type': 'builder', | 18 'bot_type': 'builder', |
| 19 'compile_targets': [ | 19 'compile_targets': [ |
| 20 'chromium_swarm_tests', | 20 'chromium_swarm_tests', |
| 21 ], | 21 ], |
| 22 'testing': { | 22 'testing': { |
| 23 'platform': 'linux', | 23 'platform': 'linux', |
| 24 }, | 24 }, |
| 25 'use_isolate': True, | 25 'use_isolate': True, |
| 26 'enable_swarming': True, | 26 'enable_swarming': True, |
| 27 'isolation_mode': 'prepare', | |
| 28 }, | 27 }, |
| 29 'Linux Tests': { | 28 'Linux Tests': { |
| 30 'recipe_config': 'chromium', | 29 'recipe_config': 'chromium', |
| 31 'chromium_config_kwargs': { | 30 'chromium_config_kwargs': { |
| 32 'BUILD_CONFIG': 'Release', | 31 'BUILD_CONFIG': 'Release', |
| 33 'TARGET_BITS': 64, | 32 'TARGET_BITS': 64, |
| 34 }, | 33 }, |
| 35 'bot_type': 'tester', | 34 'bot_type': 'tester', |
| 36 'test_generators': [ | 35 'test_generators': [ |
| 37 steps.generate_gtest, | 36 steps.generate_gtest, |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 test_data='content:content/test/data/android/device_files', | 224 test_data='content:content/test/data/android/device_files', |
| 226 adb_install_apk=( | 225 adb_install_apk=( |
| 227 'ContentShell.apk', 'org.chromium.content_shell_apk')), | 226 'ContentShell.apk', 'org.chromium.content_shell_apk')), |
| 228 ], | 227 ], |
| 229 'testing': { | 228 'testing': { |
| 230 'platform': 'linux', | 229 'platform': 'linux', |
| 231 }, | 230 }, |
| 232 }, | 231 }, |
| 233 }, | 232 }, |
| 234 } | 233 } |
| OLD | NEW |