blob: 61d8abd09c35ec34107126148d36dceefa0e9793 [file] [log] [blame]
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
Mathias Agopian6cf50a72009-08-06 16:05:39 -07005 EGLUtils.cpp \
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08006 EventHub.cpp \
7 EventRecurrence.cpp \
Mathias Agopian0926f502009-05-04 14:17:04 -07008 FramebufferNativeWindow.cpp \
Mathias Agopian3330b202009-10-05 17:07:12 -07009 GraphicBuffer.cpp \
10 GraphicBufferAllocator.cpp \
11 GraphicBufferMapper.cpp \
Mathias Agopian35b48d12010-09-13 22:57:58 -070012 GraphicLog.cpp \
Jeff Browna3477c82010-11-10 16:03:06 -080013 Keyboard.cpp \
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080014 KeyLayoutMap.cpp \
15 KeyCharacterMap.cpp \
Jeff Browne839a582010-04-22 18:58:52 -070016 Input.cpp \
17 InputDispatcher.cpp \
18 InputManager.cpp \
19 InputReader.cpp \
20 InputTransport.cpp \
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080021 IOverlay.cpp \
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080022 Overlay.cpp \
23 PixelFormat.cpp \
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080024 Rect.cpp \
Mathias Agopian9cce3252010-02-09 17:46:37 -080025 Region.cpp
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080026
27LOCAL_SHARED_LIBRARIES := \
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080028 libcutils \
29 libutils \
Mathias Agopian6cf50a72009-08-06 16:05:39 -070030 libEGL \
Mathias Agopian208059f2009-05-18 15:08:03 -070031 libbinder \
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080032 libpixelflinger \
33 libhardware \
34 libhardware_legacy
35
36LOCAL_MODULE:= libui
37
Andy McFaddene0a963b2009-09-09 08:00:09 -070038ifeq ($(TARGET_SIMULATOR),true)
39 LOCAL_LDLIBS += -lpthread
40endif
41
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080042include $(BUILD_SHARED_LIBRARY)
Jeff Brown8575a872010-06-30 16:10:35 -070043
44
45# Include subdirectory makefiles
46# ============================================================
47
48# If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework
49# team really wants is to build the stuff defined by this makefile.
50ifeq (,$(ONE_SHOT_MAKEFILE))
51include $(call first-makefiles-under,$(LOCAL_PATH))
52endif