Eric Laurent | a33b341 | 2016-10-28 17:01:08 -0700 | [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 := \ |
| 13 | libhidl \ |
| 14 | libhwbinder \ |
| 15 | libutils \ |
| 16 | liblog \ |
| 17 | libhardware \ |
| 18 | android.hardware.broadcastradio@1.0 \ |
| 19 | libradio_metadata |
| 20 | |
| 21 | ifeq ($(strip $(AUDIOSERVER_MULTILIB)),) |
| 22 | LOCAL_MULTILIB := 32 |
| 23 | else |
| 24 | LOCAL_MULTILIB := $(AUDIOSERVER_MULTILIB) |
| 25 | endif |
| 26 | |
| 27 | include $(BUILD_SHARED_LIBRARY) |