| Index: scripts/slave/recipe_modules/chromium/chromium_fyi.py
|
| diff --git a/scripts/slave/recipe_modules/chromium/chromium_fyi.py b/scripts/slave/recipe_modules/chromium/chromium_fyi.py
|
| index 89086f85ac71af4bf8577f68649e2079ced2f246..a02a441c0f4e395502922919fc9f5f950c301c40 100644
|
| --- a/scripts/slave/recipe_modules/chromium/chromium_fyi.py
|
| +++ b/scripts/slave/recipe_modules/chromium/chromium_fyi.py
|
| @@ -1240,5 +1240,84 @@ 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',
|
| + 'android_config': 'main_builder',
|
| + 'root_devices': True,
|
| + 'device_name': ['Nexus 5'],
|
| + 'device_os': ['4.4.2', '4.4.3'],
|
| + 'device_minimum_os': '4.0',
|
| + 'device_timeout': 60,
|
| + '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.GTestTest('android_webview_unittests', amp_test=True),
|
| + steps.GTestTest('base_unittests', amp_test=True,
|
| + 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.GTestTest(
|
| + 'components_unittests', amp_test=True,
|
| + android_isolate_path='components/components_unittests.isolate'),
|
| + steps.GTestTest('content_browsertests'),
|
| + steps.GTestTest('content_unittests'),
|
| + steps.GTestTest('events_unittests', amp_test=True),
|
| + steps.GTestTest('gl_tests', amp_test=True),
|
| + steps.GTestTest('gpu_unittests'),
|
| + steps.GTestTest('ipc_tests', amp_test=True),
|
| + steps.GTestTest('media_unittests'),
|
| + steps.GTestTest('net_unittests'),
|
| + steps.GTestTest(
|
| + 'sandbox_linux_unittests',
|
| + override_compile_targets=['sandbox_linux_unittests_deps']),
|
| + steps.GTestTest('sql_unittests', amp_test=True,
|
| + android_isolate_path='sql/sql_unittests.isolate'),
|
| + steps.GTestTest('sync_unit_tests', amp_test=True,
|
| + android_isolate_path='sync/sync_unit_tests.isolate'),
|
| + steps.GTestTest('ui_android_unittests', amp_test=True),
|
| + steps.GTestTest('ui_base_unittests'),
|
| + steps.GTestTest('ui_touch_selection_unittests', amp_test=True),
|
| + 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',
|
| + },
|
| + },
|
| },
|
| }
|
|
|