Extracted the input system from the window manager service into a new input manager service. This will make it easier to offer new input-related features to applications. Cleaned up the input manager service JNI layer somewhat to get rid of all of the unnecessary checks for whether the input manager had been initialized. Simplified the callback layer as well. Change-Id: I3175d01307aed1420780d3c093d2694b41edf66e
49 lines
1.3 KiB
Makefile
49 lines
1.3 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_input_InputApplicationHandle.cpp \
|
|
com_android_server_input_InputManagerService.cpp \
|
|
com_android_server_input_InputWindowHandle.cpp \
|
|
com_android_server_LightsService.cpp \
|
|
com_android_server_PowerManagerService.cpp \
|
|
com_android_server_SerialService.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 \
|
|
com_android_server_connectivity_Vpn.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 \
|
|
libandroidfw \
|
|
libcutils \
|
|
libhardware \
|
|
libhardware_legacy \
|
|
libnativehelper \
|
|
libsystem_server \
|
|
libutils \
|
|
libui \
|
|
libinput \
|
|
libskia \
|
|
libgui \
|
|
libusbhost
|
|
|
|
ifeq ($(WITH_MALLOC_LEAK_CHECK),true)
|
|
LOCAL_CFLAGS += -DMALLOC_LEAK_CHECK
|
|
endif
|
|
|
|
LOCAL_MODULE:= libandroid_servers
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|