blob: acd96381b694377e2ce853a7c8e97917ae4c6fcd [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
Steven Morelanda0da1a12017-02-13 09:59:06 -08006LOCAL_PROPRIETARY_MODULE := true
Steven Moreland08484f82016-10-14 12:27:48 -07007LOCAL_MODULE_RELATIVE_PATH := hw
8LOCAL_SRC_FILES := \
9 Light.cpp \
10
11LOCAL_SHARED_LIBRARIES := \
Yifan Hong6b920e42016-11-16 14:17:58 -080012 libhidlbase \
13 libhidltransport \
Steven Moreland08484f82016-10-14 12:27:48 -070014 libhwbinder \
15 libutils \
16 android.hardware.light@2.0 \
17 android.hardware.example.extension.light@2.0 \
18
19include $(BUILD_SHARED_LIBRARY)