diff options
Diffstat (limited to 'broadcastradio/1.0/default/Android.mk')
| -rw-r--r-- | broadcastradio/1.0/default/Android.mk | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/broadcastradio/1.0/default/Android.mk b/broadcastradio/1.0/default/Android.mk new file mode 100644 index 000000000..843b8debc --- /dev/null +++ b/broadcastradio/1.0/default/Android.mk @@ -0,0 +1,27 @@ +LOCAL_PATH := $(call my-dir) + +include $(CLEAR_VARS) +LOCAL_MODULE := android.hardware.broadcastradio@1.0-impl +LOCAL_MODULE_RELATIVE_PATH := hw +LOCAL_SRC_FILES := \ + BroadcastRadio.cpp \ + BroadcastRadioFactory.cpp \ + Tuner.cpp \ + Utils.cpp + +LOCAL_SHARED_LIBRARIES := \ + libhidl \ + libhwbinder \ + 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) |
