1LOCAL_PATH:= $(call my-dir) 2 3include $(CLEAR_VARS) 4 5LOCAL_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.) 9LOCAL_SRC_FILES := $(call all-subdir-java-files) \ 10 ../src/com/android/providers/settings/SettingsState.java \ 11 ../src/com/android/providers/settings/SettingsHelper.java 12 13LOCAL_STATIC_JAVA_LIBRARIES := android-support-test 14 15LOCAL_JAVA_LIBRARIES := legacy-android-test 16 17LOCAL_PACKAGE_NAME := SettingsProviderTest 18 19LOCAL_MODULE_TAGS := tests 20 21LOCAL_CERTIFICATE := platform 22 23LOCAL_COMPATIBILITY_SUITE := device-tests 24 25include $(BUILD_PACKAGE) 26