Android.mk revision 676cb1bdd1c14c7af56562bab51f168e7f8f6d62
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_hid.cpp \
10    com_android_bluetooth_hdp.cpp
11
12LOCAL_C_INCLUDES += \
13    $(JNI_H_INCLUDE) \
14
15LOCAL_SHARED_LIBRARIES := \
16    libandroid_runtime \
17    libnativehelper \
18    libcutils \
19    libutils \
20    libhardware
21
22#LOCAL_CFLAGS += -O0 -g
23
24LOCAL_MODULE := libbluetooth_jni
25LOCAL_MODULE_TAGS := optional
26
27include $(BUILD_SHARED_LIBRARY)
28