blob: d14d7c04055c576dae84499bc0a147621ac225d2 [file] [log] [blame]
Steven Moreland81f5da92016-09-30 16:32:24 -07001LOCAL_PATH := $(call my-dir)
2
3include $(CLEAR_VARS)
4LOCAL_MODULE := android.hardware.light@2.0-impl
5LOCAL_MODULE_RELATIVE_PATH := hw
6LOCAL_SRC_FILES := \
7 Light.cpp \
8
9LOCAL_SHARED_LIBRARIES := \
Yifan Hong6b920e42016-11-16 14:17:58 -080010 libhidlbase \
11 libhidltransport \
Steven Moreland81f5da92016-09-30 16:32:24 -070012 libhwbinder \
13 libutils \
14 liblog \
15 libcutils \
16 libhardware \
17 libbase \
18 libcutils \
19 android.hardware.light@2.0 \
20
21include $(BUILD_SHARED_LIBRARY)
Steven Moreland41db6ab2016-10-03 09:20:36 -070022
23include $(CLEAR_VARS)
24LOCAL_MODULE_RELATIVE_PATH := hw
25LOCAL_MODULE := android.hardware.light@2.0-service
26LOCAL_INIT_RC := android.hardware.light@2.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 += \
40 libhwbinder \
Yifan Hong6b920e42016-11-16 14:17:58 -080041 libhidlbase \
42 libhidltransport \
Steven Moreland41db6ab2016-10-03 09:20:36 -070043 android.hardware.light@2.0 \
44
45include $(BUILD_EXECUTABLE)