blob: 4dee3eee441da70b2eb483506cad8ac0ebdf5c85 [file] [log] [blame]
Steven Moreland21a1c582017-02-15 10:54:01 -08001LOCAL_PATH := $(call my-dir)
2
3include $(CLEAR_VARS)
4LOCAL_MODULE := android.hardware.tests.extension.light@2.0-service
5LOCAL_INIT_RC := android.hardware.tests.extension.light@2.0-service.rc
6LOCAL_PROPRIETARY_MODULE := true
7LOCAL_MODULE_RELATIVE_PATH := hw
8LOCAL_SRC_FILES := \
9 Light.cpp \
10 service.cpp
11
12LOCAL_SHARED_LIBRARIES := \
13 libhidlbase \
14 libhidltransport \
15 libhwbinder \
16 libutils \
17 android.hardware.light@2.0 \
18 android.hardware.tests.extension.light@2.0 \
19
20include $(BUILD_EXECUTABLE)