Android.mk revision cde7389187ebc6816bd73d4704f1ca1b4ee39ac3
1LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_MODULE_TAGS := optional
5
6LOCAL_SRC_FILES := $(call all-java-files-under, src)
7
8LOCAL_STATIC_JAVA_LIBRARIES := \
9    com.android.phone.common \
10    com.android.vcard \
11    android-common \
12    guava
13
14LOCAL_PACKAGE_NAME := Contacts
15LOCAL_CERTIFICATE := shared
16
17LOCAL_PROGUARD_FLAG_FILES := proguard.flags
18
19include $(BUILD_PACKAGE)
20
21# Use the folloing include to make our test apk.
22include $(call all-makefiles-under,$(LOCAL_PATH))
23