| 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, | |
| 26 'enable_swarming': True, | |
| 27 }, | 25 }, |
| 28 'Linux Tests': { | 26 'Linux Tests': { |
| 29 'recipe_config': 'chromium', | 27 'recipe_config': 'chromium', |
| 30 'chromium_config_kwargs': { | 28 'chromium_config_kwargs': { |
| 31 'BUILD_CONFIG': 'Release', | 29 'BUILD_CONFIG': 'Release', |
| 32 'TARGET_BITS': 64, | 30 'TARGET_BITS': 64, |
| 33 }, | 31 }, |
| 34 'bot_type': 'tester', | 32 'bot_type': 'tester', |
| 35 'test_generators': [ | 33 'test_generators': [ |
| 36 steps.generate_gtest, | 34 steps.generate_gtest, |
| 37 ], | 35 ], |
| 38 'tests': [ | 36 'tests': [ |
| 39 steps.MojoPythonTests(), | 37 steps.MojoPythonTests(), |
| 40 steps.MojoPythonBindingsTests(), | 38 steps.MojoPythonBindingsTests(), |
| 41 steps.TelemetryUnitTests(), | 39 steps.TelemetryUnitTests(), |
| 42 steps.TelemetryPerfUnitTests(), | 40 steps.TelemetryPerfUnitTests(), |
| 43 ], | 41 ], |
| 44 'parent_buildername': 'Linux Builder', | 42 'parent_buildername': 'Linux Builder', |
| 45 'testing': { | 43 'testing': { |
| 46 'platform': 'linux', | 44 'platform': 'linux', |
| 47 }, | 45 }, |
| 48 'enable_swarming': True, | |
| 49 }, | 46 }, |
| 50 'Linux Builder (dbg)(32)': { | 47 'Linux Builder (dbg)(32)': { |
| 51 'recipe_config': 'chromium', | 48 'recipe_config': 'chromium', |
| 52 'chromium_config_kwargs': { | 49 'chromium_config_kwargs': { |
| 53 'BUILD_CONFIG': 'Debug', | 50 'BUILD_CONFIG': 'Debug', |
| 54 'TARGET_BITS': 32, | 51 'TARGET_BITS': 32, |
| 55 }, | 52 }, |
| 56 'bot_type': 'builder', | 53 'bot_type': 'builder', |
| 57 'compile_targets': [ | 54 'compile_targets': [ |
| 58 'google_apis_unittests', | 55 'google_apis_unittests', |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 test_data='content:content/test/data/android/device_files', | 253 test_data='content:content/test/data/android/device_files', |
| 257 adb_install_apk=( | 254 adb_install_apk=( |
| 258 'ContentShell.apk', 'org.chromium.content_shell_apk')), | 255 'ContentShell.apk', 'org.chromium.content_shell_apk')), |
| 259 ], | 256 ], |
| 260 'testing': { | 257 'testing': { |
| 261 'platform': 'linux', | 258 'platform': 'linux', |
| 262 }, | 259 }, |
| 263 }, | 260 }, |
| 264 }, | 261 }, |
| 265 } | 262 } |
| OLD | NEW |