38 lines
958 B
Makefile
Executable file
38 lines
958 B
Makefile
Executable file
ifeq ($(BOARD_HAVE_BLUETOOTH_QCOM),true)
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
#ifeq (0,1) # dependency on system/bt/include logging.h change
|
|
LOCAL_MODULE_TAGS := optional
|
|
src_dirs:= src/org/codeaurora/bluetooth/btcservice \
|
|
src/org/codeaurora/bluetooth/ftp \
|
|
src/org/codeaurora/bluetooth/dun \
|
|
#src/org/codeaurora/bluetooth/pxpservice
|
|
|
|
LOCAL_SRC_FILES := \
|
|
$(call all-java-files-under, $(src_dirs)) \
|
|
#src/org/codeaurora/bluetooth/pxpservice/IPxpService.aidl
|
|
|
|
LOCAL_PACKAGE_NAME := BluetoothExt
|
|
LOCAL_CERTIFICATE := platform
|
|
LOCAL_JAVA_LIBRARIES := javax.obex
|
|
LOCAL_JAVA_LIBRARIES += telephony-common
|
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := com.android.vcard
|
|
|
|
LOCAL_REQUIRED_MODULES := bluetooth.default
|
|
|
|
LOCAL_PROGUARD_ENABLED := disabled
|
|
|
|
LOCAL_MULTILIB:= 32
|
|
LOCAL_JNI_SHARED_LIBRARIES:= libbluetooth_jni
|
|
|
|
include $(BUILD_PACKAGE)
|
|
|
|
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|
|
|
|
#endif
|
|
|
|
endif
|