Satish kumar sugasi | 644b488 | 2016-05-04 20:15:31 -0700 | [diff] [blame] | 1 | #ifeq ($(BOARD_HAVE_QCOM_FM),true) |
| 2 | #ifneq (,$(filter $(QCOM_BOARD_PLATFORMS),$(TARGET_BOARD_PLATFORM))) |
| 3 | |
| 4 | LOCAL_PATH := $(call my-dir) |
| 5 | include $(CLEAR_VARS) |
| 6 | |
| 7 | LOCAL_SRC_FILES:= \ |
Nitin Shivpure | 9eb6437 | 2017-04-19 17:59:54 +0530 | [diff] [blame] | 8 | radio_helium_hal.c \ |
| 9 | radio_helium_hal_cmds.c |
Satish kumar sugasi | 644b488 | 2016-05-04 20:15:31 -0700 | [diff] [blame] | 10 | |
| 11 | LOCAL_SHARED_LIBRARIES := \ |
| 12 | libfm-hci \ |
| 13 | libdl \ |
Satish kumar sugasi | 35a19e8 | 2017-04-08 18:39:25 -0700 | [diff] [blame] | 14 | liblog \ |
Satish kumar sugasi | 644b488 | 2016-05-04 20:15:31 -0700 | [diff] [blame] | 15 | libnativehelper \ |
| 16 | libcutils |
| 17 | |
| 18 | FM_HCI_DIR:= vendor/qcom/opensource/fm |
| 19 | |
| 20 | LOCAL_C_INCLUDES += $(FM_HCI_DIR)/fm_hci |
| 21 | |
| 22 | LOCAL_MODULE := fm_helium |
| 23 | LOCAL_MODULE_TAGS := optional |
| 24 | |
| 25 | include $(BUILD_SHARED_LIBRARY) |
| 26 | |
| 27 | #endif # is-vendor-board-platform |
| 28 | #endif # BOARD_HAVE_QCOM_FM |
| 29 | |
| 30 | |