• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1LOCAL_PATH:= $(call my-dir)
2
3include $(CLEAR_VARS)
4
5LOCAL_MODULE_TAGS := tests
6
7# 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) \
10    ../src/com/android/providers/settings/SettingsState.java
11
12LOCAL_STATIC_JAVA_LIBRARIES := android-support-test legacy-android-test
13
14LOCAL_PACKAGE_NAME := SettingsProviderTest
15
16LOCAL_MODULE_TAGS := tests
17
18LOCAL_CERTIFICATE := platform
19
20include $(BUILD_PACKAGE)
21