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