1# 2# Copyright 2012 The Android Open Source Project 3# 4# Licensed under the Apache License, Version 2.0 (the "License"); 5# you may not use this file except in compliance with the License. 6# You may obtain a copy of the License at 7# 8# http://www.apache.org/licenses/LICENSE-2.0 9# 10# Unless required by applicable law or agreed to in writing, software 11# distributed under the License is distributed on an "AS IS" BASIS, 12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13# See the License for the specific language governing permissions and 14# limitations under the License. 15# 16 17LOCAL_PATH := $(call my-dir) 18 19ifeq ($(BOARD_HAVE_BLUETOOTH_QCOM),true) 20 21include $(CLEAR_VARS) 22 23BDROID_DIR:= system/bt 24 25LOCAL_SRC_FILES := \ 26 src/bt_vendor_qcom.c \ 27 src/hardware.c \ 28 src/hci_uart.c \ 29 src/hci_smd.c \ 30 src/hw_rome.c \ 31 src/hw_ar3k.c 32 33# if read from bt nv 34# src/bt_vendor_persist.cpp 35 36ifeq ($(QCOM_BT_USE_SIBS),true) 37LOCAL_CFLAGS += -DQCOM_BT_SIBS_ENABLE 38endif 39 40ifeq ($(BOARD_HAS_QCA_BT_ROME),true) 41LOCAL_CFLAGS += -DBT_SOC_TYPE_ROME 42endif 43 44LOCAL_C_INCLUDES += \ 45 $(LOCAL_PATH)/include \ 46 $(BDROID_DIR)/hci/include \ 47 $(TARGET_OUT_HEADERS)/bt/hci_qcomm_init 48 49ifeq ($(BOARD_HAS_QCA_BT_AR3002), true) 50LOCAL_C_FLAGS := \ 51 -DBT_WAKE_VIA_PROC 52endif #BOARD_HAS_QCA_BT_AR3002 53 54ifeq ($(WIFI_BT_STATUS_SYNC), true) 55LOCAL_CFLAGS += -DWIFI_BT_STATUS_SYNC 56endif #WIFI_BT_STATUS_SYNC 57 58LOCAL_SHARED_LIBRARIES := \ 59 libcutils \ 60 liblog 61 62 63# if read from bt nv 64# libbtnv 65#LOCAL_CFLAGS += -DBT_NV_SUPPORT 66 67LOCAL_CFLAGS += -Wno-error 68LOCAL_MODULE := libbt-vendor 69LOCAL_MODULE_TAGS := optional 70LOCAL_MODULE_CLASS := SHARED_LIBRARIES 71LOCAL_MODULE_OWNER := qcom 72 73#LOCAL_CFLAGS += -DREAD_BT_ADDR_FROM_PROP 74 75#include $(LOCAL_PATH)/vnd_buildcfg.mk 76 77include $(BUILD_SHARED_LIBRARY) 78 79endif # BOARD_HAVE_BLUETOOTH_QCOM 80