blob: bb325953f4954414f96c2143c0a2c9191ecc8dde [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 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)