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