Eric Laurent | a174588 | 2016-11-21 10:41:22 -0800 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | |
| 3 | include $(CLEAR_VARS) |
| 4 | LOCAL_MODULE := android.hardware.broadcastradio@1.0-impl |
Steven Moreland | a0da1a1 | 2017-02-13 09:59:06 -0800 | [diff] [blame] | 5 | LOCAL_PROPRIETARY_MODULE := true |
Eric Laurent | a174588 | 2016-11-21 10:41:22 -0800 | [diff] [blame] | 6 | LOCAL_MODULE_RELATIVE_PATH := hw |
| 7 | LOCAL_SRC_FILES := \ |
| 8 | BroadcastRadio.cpp \ |
| 9 | BroadcastRadioFactory.cpp \ |
| 10 | Tuner.cpp \ |
| 11 | Utils.cpp |
| 12 | |
| 13 | LOCAL_SHARED_LIBRARIES := \ |
Eric Laurent | fda400b | 2016-11-21 12:13:05 -0800 | [diff] [blame] | 14 | libhidlbase \ |
| 15 | libhidltransport \ |
Eric Laurent | a174588 | 2016-11-21 10:41:22 -0800 | [diff] [blame] | 16 | libutils \ |
| 17 | liblog \ |
| 18 | libhardware \ |
| 19 | android.hardware.broadcastradio@1.0 \ |
| 20 | libradio_metadata |
| 21 | |
| 22 | ifeq ($(strip $(AUDIOSERVER_MULTILIB)),) |
| 23 | LOCAL_MULTILIB := 32 |
| 24 | else |
| 25 | LOCAL_MULTILIB := $(AUDIOSERVER_MULTILIB) |
| 26 | endif |
| 27 | |
| 28 | include $(BUILD_SHARED_LIBRARY) |