Android.mk 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # Copyright (C) 2013 The Android Open Source Project
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. LOCAL_PATH:= $(call my-dir)
  15. include $(CLEAR_VARS)
  16. LOCAL_SRC_FILES:= \
  17. EventHub.cpp \
  18. InputApplication.cpp \
  19. InputDispatcher.cpp \
  20. InputListener.cpp \
  21. InputManager.cpp \
  22. InputReader.cpp \
  23. InputWindow.cpp
  24. LOCAL_SHARED_LIBRARIES := \
  25. libbinder \
  26. libcrypto \
  27. libcutils \
  28. libinput \
  29. liblog \
  30. libutils \
  31. libui \
  32. libhardware_legacy
  33. # TODO: Move inputflinger to its own process and mark it hidden
  34. #LOCAL_CFLAGS += -fvisibility=hidden
  35. LOCAL_CFLAGS += -Wno-unused-parameter
  36. LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)
  37. LOCAL_MODULE := libinputflinger
  38. include $(BUILD_SHARED_LIBRARY)
  39. include $(call all-makefiles-under,$(LOCAL_PATH))