blob: 3971f6ce3f3d6f1751a143e70ec6ae83c65c1a78 [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 := \
10 libhidl \
11 libhwbinder \
12 liblog \
13 libbase \
14 libutils \
15 libhardware \
16 android.hardware.tv.cec@1.0 \
17
18include $(BUILD_SHARED_LIBRARY)
19
20
21include $(CLEAR_VARS)
22LOCAL_MODULE_RELATIVE_PATH := hw
23LOCAL_MODULE := android.hardware.tv.cec@1.0-service
24LOCAL_INIT_RC := android.hardware.tv.cec@1.0-service.rc
25LOCAL_SRC_FILES := \
26 service.cpp \
27
28LOCAL_SHARED_LIBRARIES := \
29 liblog \
30 libcutils \
31 libdl \
32 libbase \
33 libutils \
34 libhardware_legacy \
35 libhardware \
36
37LOCAL_SHARED_LIBRARIES += \
38 libhwbinder \
39 libhidl \
40 android.hardware.tv.cec@1.0 \
41
42include $(BUILD_EXECUTABLE)