blob: 55c21b9c7143abe2bfd9aa8ca914d520c68e4bb2 [file] [log] [blame]
Steven Moreland08484f82016-10-14 12:27:48 -07001LOCAL_PATH := $(call my-dir)
2
3include $(CLEAR_VARS)
4LOCAL_MODULE := android.hardware.example.extension.light@2.0-service
5LOCAL_INIT_RC := android.hardware.example.extension.light@2.0-service.rc
6LOCAL_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 Moreland08484f82016-10-14 12:27:48 -070013 libhwbinder \
14 libutils \
15 android.hardware.light@2.0 \
16 android.hardware.example.extension.light@2.0 \
17
18include $(BUILD_SHARED_LIBRARY)