| 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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 steps.generate_isolated_script, | 153 steps.generate_isolated_script, |
| 154 ], | 154 ], |
| 155 'tests': [ | 155 'tests': [ |
| 156 steps.AndroidInstrumentationTest('AndroidWebViewTest'), | 156 steps.AndroidInstrumentationTest('AndroidWebViewTest'), |
| 157 steps.AndroidInstrumentationTest('ChromePublicTest'), | 157 steps.AndroidInstrumentationTest('ChromePublicTest'), |
| 158 steps.AndroidInstrumentationTest('ChromeSyncShellTest'), | 158 steps.AndroidInstrumentationTest('ChromeSyncShellTest'), |
| 159 steps.AndroidInstrumentationTest('ContentShellTest'), | 159 steps.AndroidInstrumentationTest('ContentShellTest'), |
| 160 steps.AndroidInstrumentationTest('MojoTest'), | 160 steps.AndroidInstrumentationTest('MojoTest'), |
| 161 steps.GTestTest( | 161 steps.GTestTest( |
| 162 'breakpad_unittests', | 162 'breakpad_unittests', |
| 163 override_compile_targets=['breakpad_unittests_deps'], | 163 override_compile_targets=['breakpad_unittests_deps']), |
| 164 android_isolate_path='breakpad/breakpad_unittests.isolate'), | |
| 165 steps.GTestTest( | 164 steps.GTestTest( |
| 166 'sandbox_linux_unittests', | 165 'sandbox_linux_unittests', |
| 167 override_compile_targets=['sandbox_linux_unittests_deps']), | 166 override_compile_targets=['sandbox_linux_unittests_deps']), |
| 168 steps.AndroidJunitTest('base_junit_tests'), | 167 steps.AndroidJunitTest('base_junit_tests'), |
| 169 steps.AndroidJunitTest('chrome_junit_tests'), | 168 steps.AndroidJunitTest('chrome_junit_tests'), |
| 170 steps.AndroidJunitTest('components_invalidation_impl_junit_tests'), | 169 steps.AndroidJunitTest('components_invalidation_impl_junit_tests'), |
| 171 steps.AndroidJunitTest('components_policy_junit_tests'), | 170 steps.AndroidJunitTest('components_policy_junit_tests'), |
| 172 steps.AndroidJunitTest('content_junit_tests'), | 171 steps.AndroidJunitTest('content_junit_tests'), |
| 173 steps.AndroidJunitTest('junit_unit_tests'), | 172 steps.AndroidJunitTest('junit_unit_tests'), |
| 174 steps.AndroidJunitTest('net_junit_tests'), | 173 steps.AndroidJunitTest('net_junit_tests'), |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 'TARGET_BITS': 32, | 382 'TARGET_BITS': 32, |
| 384 'TARGET_PLATFORM': 'android', | 383 'TARGET_PLATFORM': 'android', |
| 385 }, | 384 }, |
| 386 'android_config': 'cast_builder', | 385 'android_config': 'cast_builder', |
| 387 'testing': { | 386 'testing': { |
| 388 'platform': 'linux', | 387 'platform': 'linux', |
| 389 }, | 388 }, |
| 390 }, | 389 }, |
| 391 }, | 390 }, |
| 392 } | 391 } |
| OLD | NEW |