1LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_MODULE_TAGS := optional
5
6# Only compile source java files in this apk.
7LOCAL_SRC_FILES := $(call all-java-files-under, src)
8LOCAL_SRC_FILES += \
9        src/com/android/providers/contacts/EventLogTags.logtags
10
11LOCAL_JAVA_LIBRARIES := ext telephony-common
12
13LOCAL_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.
20LOCAL_JACK_COVERAGE_INCLUDE_FILTER := com.android.providers.contacts.*
21
22LOCAL_PACKAGE_NAME := ContactsProvider
23LOCAL_CERTIFICATE := shared
24LOCAL_PRIVILEGED_MODULE := true
25
26LOCAL_PROGUARD_FLAG_FILES := proguard.flags
27
28include $(BUILD_PACKAGE)
29
30# Use the following include to make our test apk.
31include $(call all-makefiles-under,$(LOCAL_PATH))
32