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