You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
505 B
19 lines
505 B
LOCAL_PATH := $(call my-dir) |
|
|
|
include $(CLEAR_VARS) |
|
LOCAL_MODULE := android.hardware.tests.extension.light@2.0-service |
|
LOCAL_INIT_RC := android.hardware.tests.extension.light@2.0-service.rc |
|
LOCAL_PROPRIETARY_MODULE := true |
|
LOCAL_MODULE_RELATIVE_PATH := hw |
|
LOCAL_SRC_FILES := \ |
|
Light.cpp \ |
|
service.cpp |
|
|
|
LOCAL_SHARED_LIBRARIES := \ |
|
libhidlbase \ |
|
libhidltransport \ |
|
libutils \ |
|
android.hardware.light@2.0 \ |
|
android.hardware.tests.extension.light@2.0 \ |
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|