| ############################################# |
| # Settings Robolectric test target. # |
| ############################################# |
| LOCAL_PATH := $(call my-dir) |
| include $(CLEAR_VARS) |
| |
| LOCAL_MODULE := SettingsRoboTests |
| |
| LOCAL_SRC_FILES := $(call all-java-files-under, src) |
| |
| LOCAL_JAVA_RESOURCE_DIRS := config |
| |
| LOCAL_JAVA_LIBRARIES := \ |
| robolectric_android-all-stub \ |
| Robolectric_all-target \ |
| mockito-robolectric-prebuilt \ |
| truth-prebuilt |
| |
| LOCAL_INSTRUMENTATION_FOR := Settings |
| |
| LOCAL_MODULE_TAGS := optional |
| |
| include $(BUILD_STATIC_JAVA_LIBRARY) |
| |
| ############################################################# |
| # Settings runner target to run the previous target. # |
| ############################################################# |
| include $(CLEAR_VARS) |
| |
| LOCAL_MODULE := RunSettingsRoboTests |
| |
| LOCAL_JAVA_LIBRARIES := \ |
| SettingsRoboTests \ |
| robolectric_android-all-stub \ |
| Robolectric_all-target \ |
| mockito-robolectric-prebuilt \ |
| truth-prebuilt |
| |
| LOCAL_TEST_PACKAGE := Settings |
| |
| LOCAL_INSTRUMENT_SOURCE_DIRS := $(dir $(LOCAL_PATH))../src |
| |
| LOCAL_ROBOTEST_TIMEOUT := 36000 |
| |
| include external/robolectric-shadows/run_robotests.mk |