Chromium Code Reviews| Index: scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py |
| diff --git a/scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py b/scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py |
| index 69c056feb4f277836acce1fa4710c017e58e7e6f..75466de943aced99673eb2b97cf40da7d8643964 100644 |
| --- a/scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py |
| +++ b/scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py |
| @@ -1493,5 +1493,90 @@ SPEC = { |
| 'platform': 'linux', |
| }, |
| }, |
| + 'Android Tests (amp split)': { |
| + 'chromium_config': 'android', |
| + 'gclient_config': 'chromium', |
| + 'gclient_apply_config': ['android'], |
| + 'chromium_config_kwargs': { |
| + 'BUILD_CONFIG': 'Release', |
| + 'TARGET_BITS': 32, |
| + 'TARGET_PLATFORM': 'android', |
| + }, |
| + 'bot_type': 'tester', |
| + 'parent_buildername': 'Android Builder', |
|
jbudorick
2015/06/23 21:04:30
This should be 'Android Builder (dbg)', and we sho
|
| + 'android_config': 'main_builder', |
| + 'root_devices': True, |
| + 'enable_swarming': False, |
| + 'tests': [ |
| + steps.AndroidInstrumentationTest( |
| + 'AndroidWebViewTest', 'android_webview_test_apk', |
| + isolate_file_path='android_webview/android_webview_test_apk.isolate', |
| + adb_install_apk=( |
| + 'AndroidWebView.apk', 'org.chromium.android_webview.shell')), |
| + steps.AndroidInstrumentationTest( |
| + 'ChromeShellTest', 'chrome_shell_test_apk', |
| + isolate_file_path='chrome/chrome_shell_test_apk.isolate', |
| + adb_install_apk=( |
| + 'ChromeShell.apk', 'org.chromium.chrome.shell')), |
| + steps.AndroidInstrumentationTest( |
| + 'ContentShellTest', 'content_shell_test_apk', |
| + isolate_file_path='content/content_shell_test_apk.isolate', |
| + adb_install_apk=( |
| + 'ContentShell.apk', 'org.chromium.content_shell_apk')), |
| + steps.AndroidInstrumentationTest( |
| + 'ChromeSyncShellTest', 'chrome_sync_shell_test_apk', |
| + adb_install_apk=( |
| + 'ChromeSyncShell.apk', 'org.chromium.chrome.browser.sync')), |
| + steps.AMPGTestTest('android_webview_unittests', |
| + device_name=['Nexus 5'], device_os=['4.4.2']), |
| + steps.AMPGTestTest('base_unittests', |
| + device_name=['Nexus 5'], device_os=['4.4.2'], |
| + android_isolate_path='base/base_unittests.isolate'), |
| + steps.GTestTest( |
| + 'breakpad_unittests', |
| + override_compile_targets=['breakpad_unittests_deps'], |
| + android_isolate_path='breakpad/breakpad_unittests.isolate'), |
| + steps.GTestTest('cc_unittests'), |
| + steps.AMPGTestTest('components_unittests', |
| + device_name=['Nexus 5'], device_os=['4.4.2'], |
| + android_isolate_path='components/components_unittests.isolate'), |
| + steps.GTestTest('content_browsertests'), |
| + steps.GTestTest('content_unittests'), |
| + steps.AMPGTestTest('events_unittests', |
| + device_name=['Nexus 5'], device_os=['4.4.2']), |
| + steps.AMPGTestTest('gl_tests', |
| + device_name=['Nexus 5'], device_os=['4.4.2']), |
| + steps.GTestTest('gpu_unittests'), |
| + steps.AMPGTestTest('ipc_tests', device_name=['Nexus 5'], |
| + device_os=['4.4.2']), |
| + steps.GTestTest('media_unittests'), |
| + steps.GTestTest('net_unittests'), |
| + steps.GTestTest( |
| + 'sandbox_linux_unittests', |
| + override_compile_targets=['sandbox_linux_unittests_deps']), |
| + steps.AMPGTestTest('sql_unittests', |
| + device_name=['Nexus 5'], device_os=['4.4.2'], |
| + android_isolate_path='sql/sql_unittests.isolate'), |
| + steps.AMPGTestTest('sync_unit_tests', |
| + device_name=['Nexus 5'], device_os=['4.4.2'], |
| + android_isolate_path='sync/sync_unit_tests.isolate'), |
| + steps.AMPGTestTest('ui_android_unittests', |
| + device_name=['Nexus 5'], device_os=['4.4.2']), |
| + steps.GTestTest('ui_base_unittests'), |
| + steps.AMPGTestTest('ui_touch_selection_unittests', |
| + device_name=['Nexus 5'], device_os=['4.4.2']), |
| + steps.GTestTest('unit_tests'), |
| + steps.AndroidJunitTest('junit_unit_tests'), |
| + steps.AndroidJunitTest('chrome_junit_tests'), |
| + steps.AndroidJunitTest('content_junit_tests'), |
| + ], |
| + 'test_generators': [ |
| + steps.generate_gtest, |
| + steps.generate_script, |
| + ], |
| + 'testing': { |
| + 'platform': 'linux', |
| + }, |
| + }, |
| }, |
| } |