You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
502 B
24 lines
502 B
LOCAL_PATH := $(call my-dir) |
|
|
|
include $(CLEAR_VARS) |
|
|
|
BDROID_DIR := $(TOP_DIR)system/bt |
|
|
|
LOCAL_SRC_FILES := \ |
|
bt_vendor_mrvl.c \ |
|
hardware_mrvl.c |
|
|
|
LOCAL_C_INCLUDES += \ |
|
$(BDROID_DIR)/hci/include |
|
|
|
LOCAL_SHARED_LIBRARIES := \ |
|
libcutils \ |
|
liblog |
|
|
|
LOCAL_MODULE := libbt-vendor |
|
LOCAL_MODULE_TAGS := optional |
|
LOCAL_MODULE_CLASS := SHARED_LIBRARIES |
|
LOCAL_MODULE_OWNER := marvell |
|
LOCAL_MODULE_PATH := $(TARGET_OUT_VENDOR_SHARED_LIBRARIES) |
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|