Home | History | Annotate | Download | only in ContactsProvider
      1 LOCAL_PATH:= $(call my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 LOCAL_MODULE_TAGS := optional
      5 
      6 # Only compile source java files in this apk.
      7 LOCAL_SRC_FILES := $(call all-java-files-under, src)
      8 LOCAL_SRC_FILES += \
      9         src/com/android/providers/contacts/EventLogTags.logtags
     10 
     11 LOCAL_JAVA_LIBRARIES := ext telephony-common
     12 
     13 LOCAL_STATIC_JAVA_LIBRARIES += android-common com.android.vcard guava
     14 
     15 # The Jacoco tool analyzes code coverage when running unit tests on the
     16 # application. This configuration line selects which packages will be analyzed,
     17 # leaving out code which is tested by other means (e.g. static libraries) that
     18 # would dilute the coverage results. These options do not affect regular
     19 # production builds.
     20 LOCAL_JACK_COVERAGE_INCLUDE_FILTER := com.android.providers.contacts.*
     21 
     22 LOCAL_PACKAGE_NAME := ContactsProvider
     23 LOCAL_PRIVATE_PLATFORM_APIS := true
     24 LOCAL_CERTIFICATE := shared
     25 LOCAL_PRIVILEGED_MODULE := true
     26 
     27 LOCAL_PROGUARD_FLAG_FILES := proguard.flags
     28 
     29 include $(BUILD_PACKAGE)
     30 
     31 # Use the following include to make our test apk.
     32 include $(call all-makefiles-under,$(LOCAL_PATH))
     33