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