blob: 3f986e6d59506679371f4b14637df6b252fdfbb1 [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
Steven Morelanda0da1a12017-02-13 09:59:06 -08005LOCAL_PROPRIETARY_MODULE := true
Donghyun Cho8bdb7f92016-10-13 22:29:54 +09006LOCAL_MODULE_RELATIVE_PATH := hw
7LOCAL_SRC_FILES := \
8 HdmiCec.cpp
9
10LOCAL_SHARED_LIBRARIES := \
Yifan Hong6b920e42016-11-16 14:17:58 -080011 libhidlbase \
12 libhidltransport \
Donghyun Cho8bdb7f92016-10-13 22:29:54 +090013 libhwbinder \
14 liblog \
15 libbase \
16 libutils \
17 libhardware \
18 android.hardware.tv.cec@1.0 \
19
20include $(BUILD_SHARED_LIBRARY)
21
22
23include $(CLEAR_VARS)
24LOCAL_MODULE_RELATIVE_PATH := hw
Steven Morelanda0da1a12017-02-13 09:59:06 -080025LOCAL_PROPRIETARY_MODULE := true
Donghyun Cho8bdb7f92016-10-13 22:29:54 +090026LOCAL_MODULE := android.hardware.tv.cec@1.0-service
27LOCAL_INIT_RC := android.hardware.tv.cec@1.0-service.rc
28LOCAL_SRC_FILES := \
29 service.cpp \
30
31LOCAL_SHARED_LIBRARIES := \
32 liblog \
33 libcutils \
34 libdl \
35 libbase \
36 libutils \
37 libhardware_legacy \
38 libhardware \
39
40LOCAL_SHARED_LIBRARIES += \
41 libhwbinder \
Yifan Hong6b920e42016-11-16 14:17:58 -080042 libhidlbase \
43 libhidltransport \
Donghyun Cho8bdb7f92016-10-13 22:29:54 +090044 android.hardware.tv.cec@1.0 \
45
46include $(BUILD_EXECUTABLE)