blob: ef863e7df0c2ede1d90a97687e19a975d70487e4 [file] [log] [blame]
Svetoslav683914b2015-01-15 14:22:26 -08001LOCAL_PATH:= $(call my-dir)
2
3include $(CLEAR_VARS)
4
Makoto Onuki3a2c35782015-06-18 11:21:58 -07005# Note we statically link SettingsState to do some unit tests. It's not accessible otherwise
6# because this test is not an instrumentation test. (because the target runs in the system process.)
7LOCAL_SRC_FILES := $(call all-subdir-java-files) \
8 ../src/com/android/providers/settings/SettingsState.java
Svetoslav683914b2015-01-15 14:22:26 -08009
10LOCAL_PACKAGE_NAME := SettingsProviderTest
11
12LOCAL_MODULE_TAGS := tests
13
14LOCAL_CERTIFICATE := platform
15
16include $(BUILD_PACKAGE)