blob: 569291ee941aee8b78a1ccb8b2ef39d70a4035c0 [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
Steven Morelanda0da1a12017-02-13 09:59:06 -08005LOCAL_PROPRIETARY_MODULE := true
Eric Laurenta1745882016-11-21 10:41:22 -08006LOCAL_MODULE_RELATIVE_PATH := hw
7LOCAL_SRC_FILES := \
8 BroadcastRadio.cpp \
9 BroadcastRadioFactory.cpp \
10 Tuner.cpp \
11 Utils.cpp
12
13LOCAL_SHARED_LIBRARIES := \
Eric Laurentfda400b2016-11-21 12:13:05 -080014 libhidlbase \
15 libhidltransport \
Eric Laurenta1745882016-11-21 10:41:22 -080016 libhwbinder \
17 libutils \
18 liblog \
19 libhardware \
20 android.hardware.broadcastradio@1.0 \
21 libradio_metadata
22
23ifeq ($(strip $(AUDIOSERVER_MULTILIB)),)
24LOCAL_MULTILIB := 32
25else
26LOCAL_MULTILIB := $(AUDIOSERVER_MULTILIB)
27endif
28
29include $(BUILD_SHARED_LIBRARY)