Venkateshwarlu Domakonda | a25a778 | 2014-07-14 19:06:00 +0530 | [diff] [blame] | 1 | ifeq ($(BOARD_HAVE_QCOM_FM),true) |
AUDITYA BHATTARAM | ead5614 | 2013-11-14 22:11:02 +0530 | [diff] [blame] | 2 | ifneq (,$(filter $(QCOM_BOARD_PLATFORMS),$(TARGET_BOARD_PLATFORM))) |
Venkateshwarlu Domakonda | aa25363 | 2013-03-25 16:53:03 +0530 | [diff] [blame] | 3 | LOCAL_PATH := $(call my-dir) |
| 4 | include $(CLEAR_VARS) |
| 5 | |
| 6 | LOCAL_SRC_FILES:= \ |
Venkateshwarlu Domakonda | 1c2c435 | 2014-05-26 14:35:12 +0530 | [diff] [blame] | 7 | android_hardware_fm.cpp \ |
| 8 | ConfFileParser.cpp \ |
| 9 | ConfigFmThs.cpp \ |
| 10 | FmIoctlsInterface.cpp \ |
| 11 | FmPerformanceParams.cpp |
Venkateshwarlu Domakonda | aa25363 | 2013-03-25 16:53:03 +0530 | [diff] [blame] | 12 | |
Satish kumar sugasi | 644b488 | 2016-05-04 20:15:31 -0700 | [diff] [blame] | 13 | LOCAL_LDLIBS += -ldl |
Venkateshwarlu Domakonda | aa25363 | 2013-03-25 16:53:03 +0530 | [diff] [blame] | 14 | LOCAL_SHARED_LIBRARIES := \ |
Satish kumar sugasi | 644b488 | 2016-05-04 20:15:31 -0700 | [diff] [blame] | 15 | libandroid_runtime \ |
Venkateshwarlu Domakonda | aa25363 | 2013-03-25 16:53:03 +0530 | [diff] [blame] | 16 | libnativehelper \ |
Satish kumar sugasi | 35a19e8 | 2017-04-08 18:39:25 -0700 | [diff] [blame] | 17 | liblog \ |
Nitin Shivpure | ad94afe | 2019-02-28 19:10:37 +0530 | [diff] [blame^] | 18 | libcutils \ |
| 19 | libbtconfigstore |
Venkateshwarlu Domakonda | aa25363 | 2013-03-25 16:53:03 +0530 | [diff] [blame] | 20 | |
Sandeep Kunta | 3f94c98 | 2018-01-19 11:14:29 +0530 | [diff] [blame] | 21 | LOCAL_C_INCLUDES += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/include \ |
Nitin Shivpure | ad94afe | 2019-02-28 19:10:37 +0530 | [diff] [blame^] | 22 | $(TOP)/libnativehelper/include/nativehelper \ |
| 23 | $(TOP)/vendor/qcom/opensource/commonsys-intf/bluetooth/include \ |
| 24 | $(TOP)/vendor/qcom/opensource/commonsys/bluetooth_ext/system_bt_ext/btconfigstore |
Venkateshwarlu Domakonda | aa25363 | 2013-03-25 16:53:03 +0530 | [diff] [blame] | 25 | LOCAL_ADDITIONAL_DEPENDENCIES := $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr |
| 26 | |
Venkateshwarlu Domakonda | aa25363 | 2013-03-25 16:53:03 +0530 | [diff] [blame] | 27 | LOCAL_MODULE := libqcomfm_jni |
| 28 | LOCAL_MODULE_TAGS := optional |
| 29 | |
| 30 | include $(BUILD_SHARED_LIBRARY) |
Kamal Negi | fff2fb3 | 2017-08-08 13:56:19 +0530 | [diff] [blame] | 31 | |
Kamal Negi | fff2fb3 | 2017-08-08 13:56:19 +0530 | [diff] [blame] | 32 | |
Venkateshwarlu Domakonda | aa25363 | 2013-03-25 16:53:03 +0530 | [diff] [blame] | 33 | endif # is-vendor-board-platform |
Venkateshwarlu Domakonda | a25a778 | 2014-07-14 19:06:00 +0530 | [diff] [blame] | 34 | endif # BOARD_HAVE_QCOM_FM |