Home | History | Annotate | Download | only in Contacts
      1 LOCAL_PATH:= $(call my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 LOCAL_MODULE_TAGS := optional
      5 
      6 LOCAL_SRC_FILES := $(call all-java-files-under, src)
      7 
      8 LOCAL_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 
     17 LOCAL_REQUIRED_MODULES := libvariablespeed
     18 
     19 LOCAL_PACKAGE_NAME := Contacts
     20 LOCAL_CERTIFICATE := shared
     21 
     22 LOCAL_PROGUARD_FLAG_FILES := proguard.flags
     23 
     24 include $(BUILD_PACKAGE)
     25 
     26 # Use the folloing include to make our test apk.
     27 include $(call all-makefiles-under,$(LOCAL_PATH))
     28