blob: d039f033015c4b77254f54c7240ee434126dc9e5 [file] [log] [blame]
Svetoslav683914b2015-01-15 14:22:26 -08001LOCAL_PATH:= $(call my-dir)
2
3include $(CLEAR_VARS)
4
Svetoslav Ganove080da92016-12-21 17:10:35 -08005LOCAL_MODULE_TAGS := tests
6
Makoto Onuki3a2c35782015-06-18 11:21:58 -07007# Note we statically link SettingsState 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) \
Ritesh Reddy6b7f0f32016-02-01 13:47:48 +000010 ../src/com/android/providers/settings/SettingsState.java
Svetoslav683914b2015-01-15 14:22:26 -080011
Paul Duffin8aeb59e2017-01-10 12:08:23 +000012LOCAL_STATIC_JAVA_LIBRARIES := android-support-test legacy-android-test
Svetoslav Ganove080da92016-12-21 17:10:35 -080013
Svetoslav683914b2015-01-15 14:22:26 -080014LOCAL_PACKAGE_NAME := SettingsProviderTest
15
16LOCAL_MODULE_TAGS := tests
17
18LOCAL_CERTIFICATE := platform
19
Paul Duffin8aeb59e2017-01-10 12:08:23 +000020include $(BUILD_PACKAGE)