blob: 492fc8c540a2f0c4a6a611a5d403f739548a90f5 [file] [log] [blame]
Donghyun Cho8bdb7f92016-10-13 22:29:54 +09001LOCAL_PATH := $(call my-dir)
2
3include $(CLEAR_VARS)
4LOCAL_MODULE := android.hardware.tv.cec@1.0-impl
5LOCAL_MODULE_RELATIVE_PATH := hw
6LOCAL_SRC_FILES := \
7 HdmiCec.cpp
8
9LOCAL_SHARED_LIBRARIES := \
Yifan Hong6b920e42016-11-16 14:17:58 -080010 libhidlbase \
11 libhidltransport \
Donghyun Cho8bdb7f92016-10-13 22:29:54 +090012 libhwbinder \
13 liblog \
14 libbase \
15 libutils \
16 libhardware \
17 android.hardware.tv.cec@1.0 \
18
19include $(BUILD_SHARED_LIBRARY)
20
21
22include $(CLEAR_VARS)
23LOCAL_MODULE_RELATIVE_PATH := hw
24LOCAL_MODULE := android.hardware.tv.cec@1.0-service
25LOCAL_INIT_RC := android.hardware.tv.cec@1.0-service.rc
26LOCAL_SRC_FILES := \
27 service.cpp \
28
29LOCAL_SHARED_LIBRARIES := \
30 liblog \
31 libcutils \
32 libdl \
33 libbase \
34 libutils \
35 libhardware_legacy \
36 libhardware \
37
38LOCAL_SHARED_LIBRARIES += \
39 libhwbinder \
Yifan Hong6b920e42016-11-16 14:17:58 -080040 libhidlbase \
41 libhidltransport \
Donghyun Cho8bdb7f92016-10-13 22:29:54 +090042 android.hardware.tv.cec@1.0 \
43
44include $(BUILD_EXECUTABLE)