AUDITYA BHATTARAM | ead5614 | 2013-11-14 22:11:02 +0530 | [diff] [blame] | 1 | ifneq (,$(filter $(QCOM_BOARD_PLATFORMS),$(TARGET_BOARD_PLATFORM))) |
Venkateshwarlu Domakonda | aa25363 | 2013-03-25 16:53:03 +0530 | [diff] [blame] | 2 | LOCAL_PATH := $(call my-dir) |
| 3 | include $(CLEAR_VARS) |
| 4 | |
| 5 | LOCAL_SRC_FILES:= \ |
Venkateshwarlu Domakonda | 1c2c435 | 2014-05-26 14:35:12 +0530 | [diff] [blame^] | 6 | android_hardware_fm.cpp \ |
| 7 | ConfFileParser.cpp \ |
| 8 | ConfigFmThs.cpp \ |
| 9 | FmIoctlsInterface.cpp \ |
| 10 | FmPerformanceParams.cpp |
Venkateshwarlu Domakonda | aa25363 | 2013-03-25 16:53:03 +0530 | [diff] [blame] | 11 | |
| 12 | LOCAL_SHARED_LIBRARIES := \ |
| 13 | libnativehelper \ |
| 14 | libcutils |
| 15 | |
| 16 | LOCAL_C_INCLUDES += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/include |
| 17 | LOCAL_ADDITIONAL_DEPENDENCIES := $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr |
| 18 | |
Venkateshwarlu Domakonda | aa25363 | 2013-03-25 16:53:03 +0530 | [diff] [blame] | 19 | LOCAL_CFLAGS += -include bionic/libc/kernel/common/linux/types.h |
| 20 | LOCAL_CFLAGS += -include bionic/libc/kernel/common/linux/posix_types.h |
| 21 | LOCAL_CFLAGS += -include bionic/libc/kernel/common/linux/socket.h |
| 22 | |
| 23 | LOCAL_MODULE := libqcomfm_jni |
| 24 | LOCAL_MODULE_TAGS := optional |
| 25 | |
| 26 | include $(BUILD_SHARED_LIBRARY) |
| 27 | endif # is-vendor-board-platform |