Host support is in UsbHostManager, device support is in UsbDeviceManager Renamed UsbDeviceSettingsManager to UsbSettingsManager Change-Id: Ib76e72957c233fa7f08f454d4d9a2a1da6368cc7 Signed-off-by: Mike Lockwood <lockwood@android.com>
56 lines
1.4 KiB
Makefile
56 lines
1.4 KiB
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
com_android_server_AlarmManagerService.cpp \
|
|
com_android_server_BatteryService.cpp \
|
|
com_android_server_InputApplication.cpp \
|
|
com_android_server_InputApplicationHandle.cpp \
|
|
com_android_server_InputManager.cpp \
|
|
com_android_server_InputWindow.cpp \
|
|
com_android_server_InputWindowHandle.cpp \
|
|
com_android_server_LightsService.cpp \
|
|
com_android_server_PowerManagerService.cpp \
|
|
com_android_server_SystemServer.cpp \
|
|
com_android_server_UsbDeviceManager.cpp \
|
|
com_android_server_UsbHostManager.cpp \
|
|
com_android_server_VibratorService.cpp \
|
|
com_android_server_location_GpsLocationProvider.cpp \
|
|
onload.cpp
|
|
|
|
LOCAL_C_INCLUDES += \
|
|
$(JNI_H_INCLUDE) \
|
|
frameworks/base/services \
|
|
frameworks/base/core/jni \
|
|
external/skia/include/core
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libandroid_runtime \
|
|
libcutils \
|
|
libhardware \
|
|
libhardware_legacy \
|
|
libnativehelper \
|
|
libsystem_server \
|
|
libutils \
|
|
libui \
|
|
libinput \
|
|
libskia \
|
|
libgui \
|
|
libusbhost
|
|
|
|
ifeq ($(TARGET_SIMULATOR),true)
|
|
ifeq ($(TARGET_OS),linux)
|
|
ifeq ($(TARGET_ARCH),x86)
|
|
LOCAL_LDLIBS += -lpthread -ldl -lrt
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(WITH_MALLOC_LEAK_CHECK),true)
|
|
LOCAL_CFLAGS += -DMALLOC_LEAK_CHECK
|
|
endif
|
|
|
|
LOCAL_MODULE:= libandroid_servers
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|