blob: 1343d31e09f4f9aa1362539f988572fe93922fb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
intermediates := $(local-intermediates-dir)
ifneq ($(BOARD_BLUEDROID_VENDOR_CONF),)
SRC := $(BOARD_BLUEDROID_VENDOR_CONF)
else
SRC := $(call my-dir)/include/$(addprefix vnd_, $(addsuffix .txt,$(basename $(TARGET_DEVICE))))
ifeq (,$(wildcard $(SRC)))
# configuration file does not exist. Use default one
ifeq ($(BLUETOOTH_HCI_USE_USB), true)
SRC := $(call my-dir)/include/vnd_generic_usb.txt
else
SRC := $(call my-dir)/include/vnd_generic.txt
endif
endif
endif
GEN := $(intermediates)/vnd_buildcfg.h
TOOL := $(TOP_DIR)external/bluetooth/bluedroid/tools/gen-buildcfg.sh
$(GEN): PRIVATE_PATH := $(call my-dir)
$(GEN): PRIVATE_CUSTOM_TOOL = $(TOOL) $< $@
$(GEN): $(SRC) $(TOOL)
$(transform-generated-source)
LOCAL_GENERATED_SOURCES += $(GEN)
|