Android.mk revision b0b958e9d0bc6b67777e9f3660c3b4e28180f480
1LOCAL_PATH := $(call my-dir)
2
3include $(CLEAR_VARS)
4
5LOCAL_SRC_FILES:= \
6    com_android_bluetooth_btservice_AdapterService.cpp \
7    com_android_bluetooth_hfp.cpp \
8    com_android_bluetooth_a2dp.cpp \
9    com_android_bluetooth_avrcp.cpp \
10    com_android_bluetooth_hid.cpp \
11    com_android_bluetooth_hdp.cpp \
12    com_android_bluetooth_pan.cpp \
13    com_android_bluetooth_gatt.cpp
14
15LOCAL_C_INCLUDES += \
16    $(JNI_H_INCLUDE) \
17
18LOCAL_SHARED_LIBRARIES := \
19    libandroid_runtime \
20    libnativehelper \
21    libcutils \
22    libutils \
23    liblog \
24    libhardware
25
26LOCAL_MULTILIB := 32
27
28#LOCAL_CFLAGS += -O0 -g
29
30LOCAL_MODULE := libbluetooth_jni
31LOCAL_MODULE_TAGS := optional
32
33include $(BUILD_SHARED_LIBRARY)
34