-
Notifications
You must be signed in to change notification settings - Fork 0
/
Android.mk
executable file
·37 lines (25 loc) · 957 Bytes
/
Android.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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