/services/input/Android.mk

https://github.com/aizuzi/platform_frameworks_base · Makefile · 61 lines · 33 code · 11 blank · 17 comment · 0 complexity · 741df53dd7e02b0c9c8f10223f5f5041 MD5 · raw file

  1. # Copyright (C) 2010 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. PointerController.cpp \
  25. SpriteController.cpp
  26. LOCAL_SHARED_LIBRARIES := \
  27. libcutils \
  28. liblog \
  29. libandroidfw \
  30. libutils \
  31. libhardware \
  32. libhardware_legacy \
  33. libskia \
  34. libgui \
  35. libui \
  36. libinput \
  37. libcrypto \
  38. LOCAL_C_INCLUDES := \
  39. external/openssl/include \
  40. external/skia/include/core \
  41. LOCAL_MODULE:= libinputservice
  42. LOCAL_MODULE_TAGS := optional
  43. include $(BUILD_SHARED_LIBRARY)
  44. # Include subdirectory makefiles
  45. # ============================================================
  46. # If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework
  47. # team really wants is to build the stuff defined by this makefile.
  48. ifeq (,$(ONE_SHOT_MAKEFILE))
  49. include $(call first-makefiles-under,$(LOCAL_PATH))
  50. endif