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 LOCAL_SRC_FILES := \
      7         $(call all-java-files-under, lib/mapapi)
      8 
      9 LOCAL_MODULE := bluetooth.mapsapi
     10 
     11 include $(BUILD_JAVA_LIBRARY)
     12 
     13 include $(CLEAR_VARS)
     14 
     15 LOCAL_MODULE_TAGS := optional
     16 
     17 LOCAL_SRC_FILES := \
     18         $(call all-java-files-under, src)
     19 
     20 LOCAL_PACKAGE_NAME := Bluetooth
     21 LOCAL_CERTIFICATE := platform
     22 
     23 LOCAL_JNI_SHARED_LIBRARIES := libbluetooth_jni
     24 LOCAL_JAVA_LIBRARIES := javax.obex telephony-common bluetooth.mapsapi
     25 LOCAL_STATIC_JAVA_LIBRARIES := com.android.vcard
     26 
     27 LOCAL_REQUIRED_MODULES := bluetooth.default
     28 LOCAL_MULTILIB := 32
     29 
     30 LOCAL_PROGUARD_ENABLED := disabled
     31 
     32 include $(BUILD_PACKAGE)
     33 
     34 include $(call all-makefiles-under,$(LOCAL_PATH))
     35