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
12
13LOCAL_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.
20LOCAL_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.
27LOCAL_EMMA_COVERAGE_FILTER := +com.android.providers.contacts.*
28
29LOCAL_PACKAGE_NAME := ContactsProvider
30LOCAL_CERTIFICATE := shared
31
32LOCAL_PROGUARD_FLAG_FILES := proguard.flags
33
34include $(BUILD_PACKAGE)
35
36# Use the following include to make our test apk.
37include $(call all-makefiles-under,$(LOCAL_PATH))
38