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_JAVA_LIBRARIES := telephony-common 9LOCAL_STATIC_JAVA_LIBRARIES := \ 10 com.android.phone.common \ 11 com.android.vcard \ 12 android-common \ 13 guava \ 14 android-support-v13 \ 15 android-support-v4 \ 16 android-ex-variablespeed \ 17 18LOCAL_REQUIRED_MODULES := libvariablespeed 19 20LOCAL_PACKAGE_NAME := Contacts 21LOCAL_CERTIFICATE := shared 22 23LOCAL_PROGUARD_FLAG_FILES := proguard.flags 24 25include $(BUILD_PACKAGE) 26 27# Use the folloing include to make our test apk. 28include $(call all-makefiles-under,$(LOCAL_PATH)) 29