blob: 734a0e129168eecc6646780ee9e770e7ff65f979 [file] [log] [blame]
Eric Laurenta1745882016-11-21 10:41:22 -08001LOCAL_PATH := $(call my-dir)
2
3include $(CLEAR_VARS)
4LOCAL_MODULE := android.hardware.broadcastradio@1.0-impl
5LOCAL_MODULE_RELATIVE_PATH := hw
6LOCAL_SRC_FILES := \
7 BroadcastRadio.cpp \
8 BroadcastRadioFactory.cpp \
9 Tuner.cpp \
10 Utils.cpp
11
12LOCAL_SHARED_LIBRARIES := \
Eric Laurentfda400b2016-11-21 12:13:05 -080013 libhidlbase \
14 libhidltransport \
Eric Laurenta1745882016-11-21 10:41:22 -080015 libhwbinder \
16 libutils \
17 liblog \
18 libhardware \
19 android.hardware.broadcastradio@1.0 \
20 libradio_metadata
21
22ifeq ($(strip $(AUDIOSERVER_MULTILIB)),)
23LOCAL_MULTILIB := 32
24else
25LOCAL_MULTILIB := $(AUDIOSERVER_MULTILIB)
26endif
27
28include $(BUILD_SHARED_LIBRARY)