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_CERTIFICATE := shared 24 LOCAL_PRIVILEGED_MODULE := true 25 26 LOCAL_PROGUARD_FLAG_FILES := proguard.flags 27 28 include $(BUILD_PACKAGE) 29 30 # Use the following include to make our test apk. 31 include $(call all-makefiles-under,$(LOCAL_PATH)) 32