Home | History | Annotate | Download | only in bluetooth
      1 LOCAL_PATH:= $(call my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 LOCAL_MODULE_TAGS := optional
      5 
      6 src_dirs:= src/android/bluetooth/client/pbap
      7 
      8 LOCAL_SRC_FILES := \
      9         $(call all-java-files-under, $(src_dirs))
     10 
     11 LOCAL_MODULE:= android.bluetooth.client.pbap
     12 LOCAL_JAVA_LIBRARIES := javax.obex
     13 LOCAL_STATIC_JAVA_LIBRARIES := com.android.vcard
     14 
     15 LOCAL_PROGUARD_ENABLED := disabled
     16 
     17 include $(BUILD_STATIC_JAVA_LIBRARY)
     18 
     19 include $(CLEAR_VARS)
     20 
     21 src_dirs:= src/android/bluetooth/client/map
     22 
     23 LOCAL_SRC_FILES := \
     24         $(call all-java-files-under, $(src_dirs))
     25 
     26 LOCAL_MODULE:= android.bluetooth.client.map
     27 LOCAL_JAVA_LIBRARIES := javax.obex
     28 LOCAL_STATIC_JAVA_LIBRARIES := com.android.vcard
     29 
     30 LOCAL_PROGUARD_ENABLED := disabled
     31 
     32 include $(BUILD_STATIC_JAVA_LIBRARY)
     33 
     34 
     35 include $(call all-makefiles-under,$(LOCAL_PATH))
     36