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 Emma 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_EMMA_COVERAGE_FILTER := +com.android.providers.contacts.* 21 22 # The Emma tool analyzes code coverage when running unit tests on the 23 # application. This configuration line selects which packages will be analyzed, 24 # leaving out code which is tested by other means (e.g. static libraries) that 25 # would dilute the coverage results. These options do not affect regular 26 # production builds. 27 LOCAL_EMMA_COVERAGE_FILTER := +com.android.providers.contacts.* 28 29 LOCAL_PACKAGE_NAME := ContactsProvider 30 LOCAL_CERTIFICATE := shared 31 LOCAL_PRIVILEGED_MODULE := true 32 33 LOCAL_PROGUARD_FLAG_FILES := proguard.flags 34 35 include $(BUILD_PACKAGE) 36 37 # Use the following include to make our test apk. 38 include $(call all-makefiles-under,$(LOCAL_PATH)) 39