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 |
| 5 | LOCAL_MODULE_RELATIVE_PATH := hw |
| 6 | LOCAL_SRC_FILES := \ |
| 7 | BroadcastRadio.cpp \ |
| 8 | BroadcastRadioFactory.cpp \ |
| 9 | Tuner.cpp \ |
| 10 | Utils.cpp |
| 11 | |
| 12 | LOCAL_SHARED_LIBRARIES := \ |
Eric Laurent | fda400b | 2016-11-21 12:13:05 -0800 | [diff] [blame] | 13 | libhidlbase \ |
| 14 | libhidltransport \ |
Eric Laurent | a174588 | 2016-11-21 10:41:22 -0800 | [diff] [blame] | 15 | libhwbinder \ |
| 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) |