Home | History | Annotate | Download | only in bluetooth
      1 LOCAL_PATH:= $(call my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 src_dirs:= src/android/bluetooth/client/map
      5 
      6 LOCAL_SRC_FILES := \
      7         $(call all-java-files-under, $(src_dirs))
      8 
      9 LOCAL_MODULE:= android.bluetooth.client.map
     10 LOCAL_JAVA_LIBRARIES := javax.obex
     11 LOCAL_STATIC_JAVA_LIBRARIES := com.android.vcard
     12 
     13 LOCAL_PROGUARD_ENABLED := disabled
     14 
     15 include $(BUILD_STATIC_JAVA_LIBRARY)
     16 
     17 
     18 include $(call all-makefiles-under,$(LOCAL_PATH))
     19