diff options
Diffstat (limited to 'services/inputflinger/Android.mk')
-rw-r--r-- | services/inputflinger/Android.mk | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/services/inputflinger/Android.mk b/services/inputflinger/Android.mk index e32d38a..4b7718a 100644 --- a/services/inputflinger/Android.mk +++ b/services/inputflinger/Android.mk @@ -16,6 +16,13 @@ LOCAL_PATH:= $(call my-dir) include $(CLEAR_VARS) LOCAL_SRC_FILES:= \ + EventHub.cpp \ + InputApplication.cpp \ + InputDispatcher.cpp \ + InputListener.cpp \ + InputManager.cpp \ + InputReader.cpp \ + InputWindow.cpp \ InputFlinger.cpp LOCAL_SHARED_LIBRARIES := \ @@ -23,9 +30,13 @@ LOCAL_SHARED_LIBRARIES := \ libcutils \ libinput \ liblog \ - libutils + libutils \ + libui \ + libhardware_legacy -LOCAL_CFLAGS += -fvisibility=hidden + +# TODO: Move inputflinger to its own process and mark it hidden +#LOCAL_CFLAGS += -fvisibility=hidden LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH) |