blob: 9d37344e50a8b97dc7647a550729f1ff694c59d9 [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 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
Steven Morelanda0da1a12017-02-13 09:59:06 -080024LOCAL_PROPRIETARY_MODULE := true
Donghyun Cho8bdb7f92016-10-13 22:29:54 +090025LOCAL_MODULE := android.hardware.tv.cec@1.0-service
26LOCAL_INIT_RC := android.hardware.tv.cec@1.0-service.rc
27LOCAL_SRC_FILES := \
28 service.cpp \
29
30LOCAL_SHARED_LIBRARIES := \
31 liblog \
32 libcutils \
33 libdl \
34 libbase \
35 libutils \
36 libhardware_legacy \
37 libhardware \
38
39LOCAL_SHARED_LIBRARIES += \
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)