blob: 61f4cc9b8d49a082d867e2f0d50a74fb5442adbd [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 := \
10 libhidl \
11 libhwbinder \
12 libutils \
13 liblog \
14 libcutils \
15 libhardware \
16 libbase \
17 libcutils \
18 android.hardware.light@2.0 \
19
20include $(BUILD_SHARED_LIBRARY)
Steven Moreland41db6ab2016-10-03 09:20:36 -070021
22include $(CLEAR_VARS)
23LOCAL_MODULE_RELATIVE_PATH := hw
24LOCAL_MODULE := android.hardware.light@2.0-service
25LOCAL_INIT_RC := android.hardware.light@2.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 \
40 libhidl \
41 android.hardware.light@2.0 \
42
43include $(BUILD_EXECUTABLE)