1LOCAL_PATH := $(call my-dir) 2 3include $(CLEAR_VARS) 4LOCAL_MODULE_RELATIVE_PATH := hw 5LOCAL_PROPRIETARY_MODULE := true 6LOCAL_MODULE := android.hardware.usb@1.0-service 7LOCAL_INIT_RC := android.hardware.usb@1.0-service.rc 8LOCAL_SRC_FILES := \ 9 service.cpp \ 10 Usb.cpp 11 12LOCAL_SHARED_LIBRARIES := \ 13 libcutils \ 14 libhidlbase \ 15 libhidltransport \ 16 liblog \ 17 libutils \ 18 libhardware \ 19 android.hardware.usb@1.0 \ 20 21include $(BUILD_EXECUTABLE) 22