blob: 2673f3d6de230c627b762eb003bd734f4bef005f [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 Duffin37e9a282017-06-13 15:53:11 +010012LOCAL_STATIC_JAVA_LIBRARIES := android-support-test
13
14LOCAL_JAVA_LIBRARIES := legacy-android-test
Svetoslav Ganove080da92016-12-21 17:10:35 -080015
Svetoslav683914b2015-01-15 14:22:26 -080016LOCAL_PACKAGE_NAME := SettingsProviderTest
17
18LOCAL_MODULE_TAGS := tests
19
20LOCAL_CERTIFICATE := platform
21
Paul Duffin8aeb59e2017-01-10 12:08:23 +000022include $(BUILD_PACKAGE)