1 LOCAL_PATH:= $(call my-dir) 2 3 include $(CLEAR_VARS) 4 5 LOCAL_MODULE_TAGS := tests 6 7 # Note we statically link several classes to do some unit tests. It's not accessible otherwise 8 # because this test is not an instrumentation test. (because the target runs in the system process.) 9 LOCAL_SRC_FILES := $(call all-subdir-java-files) \ 10 ../src/com/android/providers/settings/SettingsState.java \ 11 ../src/com/android/providers/settings/SettingsHelper.java 12 13 LOCAL_STATIC_JAVA_LIBRARIES := android-support-test 14 15 LOCAL_JAVA_LIBRARIES := legacy-android-test 16 17 LOCAL_PACKAGE_NAME := SettingsProviderTest 18 19 LOCAL_MODULE_TAGS := tests 20 21 LOCAL_CERTIFICATE := platform 22 23 LOCAL_COMPATIBILITY_SUITE := device-tests 24 25 include $(BUILD_PACKAGE) 26