blob: 1f44e664380d22b313b9b325a7aa545b81438f62 [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
Steven Morelanda0da1a12017-02-13 09:59:06 -08005LOCAL_PROPRIETARY_MODULE := true
Steven Moreland81f5da92016-09-30 16:32:24 -07006LOCAL_MODULE_RELATIVE_PATH := hw
7LOCAL_SRC_FILES := \
8 Light.cpp \
9
10LOCAL_SHARED_LIBRARIES := \
Yifan Hong6b920e42016-11-16 14:17:58 -080011 libhidlbase \
12 libhidltransport \
Steven Moreland81f5da92016-09-30 16:32:24 -070013 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
Steven Morelanda0da1a12017-02-13 09:59:06 -080025LOCAL_PROPRIETARY_MODULE := true
Steven Moreland41db6ab2016-10-03 09:20:36 -070026LOCAL_MODULE := android.hardware.light@2.0-service
27LOCAL_INIT_RC := android.hardware.light@2.0-service.rc
28LOCAL_SRC_FILES := \
29 service.cpp \
30
31LOCAL_SHARED_LIBRARIES := \
32 liblog \
33 libcutils \
34 libdl \
35 libbase \
36 libutils \
Steven Moreland41db6ab2016-10-03 09:20:36 -070037 libhardware \
38
39LOCAL_SHARED_LIBRARIES += \
Yifan Hong6b920e42016-11-16 14:17:58 -080040 libhidlbase \
41 libhidltransport \
Steven Moreland41db6ab2016-10-03 09:20:36 -070042 android.hardware.light@2.0 \
43
44include $(BUILD_EXECUTABLE)