OSDN Git Service

resolve merge conflicts of 00a44d2 to nyc-dev
[android-x86/system-bt.git] / audio_a2dp_hw / Android.mk
1 LOCAL_PATH := $(call my-dir)
2
3 # Audio A2DP shared library for target
4 # ========================================================
5 include $(CLEAR_VARS)
6
7 LOCAL_SRC_FILES := \
8         audio_a2dp_hw.c
9
10 LOCAL_C_INCLUDES += \
11         . \
12         $(LOCAL_PATH)/../ \
13         $(LOCAL_PATH)/../utils/include
14
15 LOCAL_MODULE := audio.a2dp.default
16 LOCAL_MODULE_RELATIVE_PATH := hw
17
18 LOCAL_SHARED_LIBRARIES := liblog
19 LOCAL_STATIC_LIBRARIES := libosi
20
21 LOCAL_MODULE_TAGS := optional
22
23 LOCAL_CFLAGS += $(bluetooth_CFLAGS)
24 LOCAL_CONLYFLAGS += $(bluetooth_CONLYFLAGS)
25 LOCAL_CPPFLAGS += $(bluetooth_CPPFLAGS)
26
27 include $(BUILD_SHARED_LIBRARY)