Added support for loading the pointer icon from a resource. Moved the system server related bits of the input manager out of libui and into libinput since they do not need to be linked into applications. Change-Id: Iec11e0725b3add2b905c51f8ea2c3b4b0d1a2d67
32 lines
624 B
Makefile
32 lines
624 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
system_init.cpp
|
|
|
|
base = $(LOCAL_PATH)/../../..
|
|
|
|
LOCAL_C_INCLUDES := \
|
|
$(base)/services/camera/libcameraservice \
|
|
$(base)/services/audioflinger \
|
|
$(base)/services/surfaceflinger \
|
|
$(base)/services/sensorservice \
|
|
$(base)/media/libmediaplayerservice \
|
|
$(JNI_H_INCLUDE)
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libandroid_runtime \
|
|
libsensorservice \
|
|
libsurfaceflinger \
|
|
libaudioflinger \
|
|
libcameraservice \
|
|
libmediaplayerservice \
|
|
libinput \
|
|
libutils \
|
|
libbinder \
|
|
libcutils
|
|
|
|
LOCAL_MODULE:= libsystem_server
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|