| 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 }, |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 'chromium_config_kwargs': { | 28 'chromium_config_kwargs': { |
| 29 'BUILD_CONFIG': 'Release', | 29 'BUILD_CONFIG': 'Release', |
| 30 'TARGET_BITS': 64, | 30 'TARGET_BITS': 64, |
| 31 }, | 31 }, |
| 32 'bot_type': 'tester', | 32 'bot_type': 'tester', |
| 33 'test_generators': [ | 33 'test_generators': [ |
| 34 steps.generate_gtest, | 34 steps.generate_gtest, |
| 35 ], | 35 ], |
| 36 'tests': [ | 36 'tests': [ |
| 37 steps.MojoPythonTests(), | 37 steps.MojoPythonTests(), |
| 38 steps.MojoPythonBindingsTests(), | |
| 39 steps.TelemetryUnitTests(), | 38 steps.TelemetryUnitTests(), |
| 40 steps.TelemetryPerfUnitTests(), | 39 steps.TelemetryPerfUnitTests(), |
| 41 ], | 40 ], |
| 42 'parent_buildername': 'Linux Builder', | 41 'parent_buildername': 'Linux Builder', |
| 43 'testing': { | 42 'testing': { |
| 44 'platform': 'linux', | 43 'platform': 'linux', |
| 45 }, | 44 }, |
| 46 }, | 45 }, |
| 47 'Linux Builder (dbg)(32)': { | 46 'Linux Builder (dbg)(32)': { |
| 48 'recipe_config': 'chromium', | 47 'recipe_config': 'chromium', |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 test_data='content:content/test/data/android/device_files', | 242 test_data='content:content/test/data/android/device_files', |
| 244 adb_install_apk=( | 243 adb_install_apk=( |
| 245 'ContentShell.apk', 'org.chromium.content_shell_apk')), | 244 'ContentShell.apk', 'org.chromium.content_shell_apk')), |
| 246 ], | 245 ], |
| 247 'testing': { | 246 'testing': { |
| 248 'platform': 'linux', | 247 'platform': 'linux', |
| 249 }, | 248 }, |
| 250 }, | 249 }, |
| 251 }, | 250 }, |
| 252 } | 251 } |
| OLD | NEW |