blob: fa687876b86c63f35794a1ef0b631f8220236868 [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 := \
11 libhidl \
12 libhwbinder \
13 libutils \
14 android.hardware.light@2.0 \
15 android.hardware.example.extension.light@2.0 \
16
17include $(BUILD_SHARED_LIBRARY)