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 LOCAL_MULTILIB := 32 11 include $(BUILD_STATIC_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 $(call all-proto-files-under, src) 20 21 LOCAL_PACKAGE_NAME := Bluetooth 22 LOCAL_CERTIFICATE := platform 23 24 LOCAL_JNI_SHARED_LIBRARIES := libbluetooth_jni 25 LOCAL_JAVA_LIBRARIES := javax.obex telephony-common libprotobuf-java-micro services.net 26 LOCAL_STATIC_JAVA_LIBRARIES := com.android.vcard bluetooth.mapsapi sap-api-java-static android-support-v4 services.net 27 LOCAL_PROTOC_OPTIMIZE_TYPE := micro 28 29 LOCAL_REQUIRED_MODULES := bluetooth.default 30 LOCAL_MULTILIB := 32 31 32 LOCAL_PROGUARD_ENABLED := disabled 33 34 include $(BUILD_PACKAGE) 35 36 include $(call all-makefiles-under,$(LOCAL_PATH)) 37