| LOCAL_PATH := $(call my-dir) |
| |
| include $(CLEAR_VARS) |
| LOCAL_MODULE := android.hardware.broadcastradio@1.0-impl |
| LOCAL_PROPRIETARY_MODULE := true |
| LOCAL_MODULE_RELATIVE_PATH := hw |
| LOCAL_SRC_FILES := \ |
| BroadcastRadio.cpp \ |
| BroadcastRadioFactory.cpp \ |
| Tuner.cpp \ |
| Utils.cpp |
| |
| LOCAL_SHARED_LIBRARIES := \ |
| libhidlbase \ |
| libhidltransport \ |
| libutils \ |
| liblog \ |
| libhardware \ |
| android.hardware.broadcastradio@1.0 \ |
| libradio_metadata |
| |
| ifeq ($(strip $(AUDIOSERVER_MULTILIB)),) |
| LOCAL_MULTILIB := 32 |
| else |
| LOCAL_MULTILIB := $(AUDIOSERVER_MULTILIB) |
| endif |
| |
| include $(BUILD_SHARED_LIBRARY) |