blob: 8233e5be3a6e31b0fc9caa26b0f455f027b20c84 [file] [log] [blame]
The Android Open Source Projectc731b0c2009-03-03 19:32:39 -08001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
Jean-Baptiste Queru134e08c2010-01-05 16:27:28 -08004LOCAL_MODULE_TAGS := optional
The Android Open Source Projectc731b0c2009-03-03 19:32:39 -08005
Jeff Hamilton0284cb82009-05-04 12:32:23 -07006# Only compile source java files in this apk.
7LOCAL_SRC_FILES := $(call all-java-files-under, src)
Jeff Hamilton71091332010-05-25 22:13:01 -05008LOCAL_SRC_FILES += \
9 src/com/android/providers/contacts/EventLogTags.logtags
The Android Open Source Projectc731b0c2009-03-03 19:32:39 -080010
Wink Savillee0c5d802012-06-11 21:14:16 -070011LOCAL_JAVA_LIBRARIES := ext telephony-common
The Android Open Source Projectc731b0c2009-03-03 19:32:39 -080012
Daisuke Miyakawaf9648a02011-07-17 16:16:23 -070013LOCAL_STATIC_JAVA_LIBRARIES += android-common com.android.vcard guava
Dianne Hackborn3f0445d2010-02-24 19:59:48 -080014
Sebastien Hertz5508cc72016-04-06 18:35:52 +020015# The Jacoco tool analyzes code coverage when running unit tests on the
Guang Zhucc103ab2010-07-29 10:52:45 -070016# 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.
Sebastien Hertz5508cc72016-04-06 18:35:52 +020020LOCAL_JACK_COVERAGE_INCLUDE_FILTER := com.android.providers.contacts.*
Guang Zhuf1ee4312010-07-29 10:52:45 -070021
The Android Open Source Projectc731b0c2009-03-03 19:32:39 -080022LOCAL_PACKAGE_NAME := ContactsProvider
23LOCAL_CERTIFICATE := shared
Christopher Tateee00f992013-05-10 14:07:50 -070024LOCAL_PRIVILEGED_MODULE := true
The Android Open Source Projectc731b0c2009-03-03 19:32:39 -080025
Dmitri Plotnikov1e2232d2010-12-01 13:16:44 -080026LOCAL_PROGUARD_FLAG_FILES := proguard.flags
27
The Android Open Source Projectc731b0c2009-03-03 19:32:39 -080028include $(BUILD_PACKAGE)
Jeff Hamilton4f864362009-04-23 02:29:07 -050029
30# Use the following include to make our test apk.
31include $(call all-makefiles-under,$(LOCAL_PATH))