Chromium Code Reviews| 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 141 'TARGET_PLATFORM': 'android', | 141 'TARGET_PLATFORM': 'android', |
| 142 'TARGET_ARCH': 'arm', | 142 'TARGET_ARCH': 'arm', |
| 143 }, | 143 }, |
| 144 'android_config': 'main_builder', | 144 'android_config': 'main_builder', |
| 145 'test_generators': [ | 145 'test_generators': [ |
| 146 steps.generate_gtest, | 146 steps.generate_gtest, |
| 147 steps.generate_script, | 147 steps.generate_script, |
| 148 steps.generate_isolated_script, | 148 steps.generate_isolated_script, |
| 149 ], | 149 ], |
| 150 'tests': [ | 150 'tests': [ |
| 151 steps.AndroidInstrumentationTest('AndroidWebViewTest'), | |
| 151 steps.AndroidInstrumentationTest('ChromePublicTest'), | 152 steps.AndroidInstrumentationTest('ChromePublicTest'), |
| 152 steps.AndroidInstrumentationTest('ContentShellTest'), | 153 steps.AndroidInstrumentationTest('ContentShellTest'), |
| 154 steps.AndroidInstrumentationTest('ChromeSyncShellTest'), | |
|
jbudorick
2016/01/08 01:55:34
nit: move above ContentShellTest
agrieve
2016/01/08 20:01:27
Done.
| |
| 153 steps.GTestTest( | 155 steps.GTestTest( |
| 154 'breakpad_unittests', | 156 'breakpad_unittests', |
| 155 override_compile_targets=['breakpad_unittests_deps'], | 157 override_compile_targets=['breakpad_unittests_deps'], |
| 156 android_isolate_path='breakpad/breakpad_unittests.isolate'), | 158 android_isolate_path='breakpad/breakpad_unittests.isolate'), |
| 157 steps.GTestTest( | 159 steps.GTestTest( |
| 158 'sandbox_linux_unittests', | 160 'sandbox_linux_unittests', |
| 159 override_compile_targets=['sandbox_linux_unittests_deps']), | 161 override_compile_targets=['sandbox_linux_unittests_deps']), |
| 160 steps.AndroidJunitTest('base_junit_tests'), | 162 steps.AndroidJunitTest('base_junit_tests'), |
| 161 steps.AndroidJunitTest('chrome_junit_tests'), | 163 steps.AndroidJunitTest('chrome_junit_tests'), |
| 162 steps.AndroidJunitTest('components_invalidation_impl_junit_tests'), | 164 steps.AndroidJunitTest('components_invalidation_impl_junit_tests'), |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 466 'TARGET_BITS': 32, | 468 'TARGET_BITS': 32, |
| 467 'TARGET_PLATFORM': 'android', | 469 'TARGET_PLATFORM': 'android', |
| 468 }, | 470 }, |
| 469 'android_config': 'cast_builder', | 471 'android_config': 'cast_builder', |
| 470 'testing': { | 472 'testing': { |
| 471 'platform': 'linux', | 473 'platform': 'linux', |
| 472 }, | 474 }, |
| 473 }, | 475 }, |
| 474 }, | 476 }, |
| 475 } | 477 } |
| OLD | NEW |