Link to android.hidl.manager-V1.0-java shared libraryto prevent duplicate copies of the library present in process address space. Bug: 38036660 Test: Verified that the UsbService reports status of the ports through dumpsys usb. Change-Id: Ie3de4f9bbe28061e7cc464fa3cab2f6bd6fe6995
17 lines
350 B
Makefile
17 lines
350 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := services.usb
|
|
|
|
LOCAL_SRC_FILES += \
|
|
$(call all-java-files-under,java)
|
|
|
|
LOCAL_JAVA_LIBRARIES := services.core \
|
|
android.hidl.manager-V1.0-java
|
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := android.hardware.usb-V1.0-java \
|
|
android.hardware.usb-V1.1-java
|
|
|
|
include $(BUILD_STATIC_JAVA_LIBRARY)
|