blob: 7bd096c86cb1e99df8951f067067d70fe69eac4f [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 libhwbinder \
14 libutils \
15 liblog \
16 libcutils \
17 libhardware \
18 libbase \
19 libcutils \
20 android.hardware.light@2.0 \
21
22include $(BUILD_SHARED_LIBRARY)
Steven Moreland41db6ab2016-10-03 09:20:36 -070023
24include $(CLEAR_VARS)
25LOCAL_MODULE_RELATIVE_PATH := hw
Steven Morelanda0da1a12017-02-13 09:59:06 -080026LOCAL_PROPRIETARY_MODULE := true
Steven Moreland41db6ab2016-10-03 09:20:36 -070027LOCAL_MODULE := android.hardware.light@2.0-service
28LOCAL_INIT_RC := android.hardware.light@2.0-service.rc
29LOCAL_SRC_FILES := \
30 service.cpp \
31
32LOCAL_SHARED_LIBRARIES := \
33 liblog \
34 libcutils \
35 libdl \
36 libbase \
37 libutils \
38 libhardware_legacy \
39 libhardware \
40
41LOCAL_SHARED_LIBRARIES += \
42 libhwbinder \
Yifan Hong6b920e42016-11-16 14:17:58 -080043 libhidlbase \
44 libhidltransport \
Steven Moreland41db6ab2016-10-03 09:20:36 -070045 android.hardware.light@2.0 \
46
47include $(BUILD_EXECUTABLE)