blob: c4a09d67d468b27c1075a5d82d46b1d47fb8928d [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
Mathias Agopian265d9c02009-08-06 16:05:39 -07005 EGLUtils.cpp \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006 EventHub.cpp \
7 EventRecurrence.cpp \
Mathias Agopiandff8e582009-05-04 14:17:04 -07008 FramebufferNativeWindow.cpp \
Mathias Agopian6950e422009-10-05 17:07:12 -07009 GraphicBuffer.cpp \
10 GraphicBufferAllocator.cpp \
11 GraphicBufferMapper.cpp \
Mathias Agopian04262e92010-09-13 22:57:58 -070012 GraphicLog.cpp \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080013 KeyLayoutMap.cpp \
14 KeyCharacterMap.cpp \
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070015 Input.cpp \
16 InputDispatcher.cpp \
17 InputManager.cpp \
18 InputReader.cpp \
19 InputTransport.cpp \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080020 IOverlay.cpp \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080021 Overlay.cpp \
22 PixelFormat.cpp \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023 Rect.cpp \
Mathias Agopian000479f2010-02-09 17:46:37 -080024 Region.cpp
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025
26LOCAL_SHARED_LIBRARIES := \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080027 libcutils \
28 libutils \
Mathias Agopian265d9c02009-08-06 16:05:39 -070029 libEGL \
Mathias Agopian25ba5b62009-05-18 15:08:03 -070030 libbinder \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031 libpixelflinger \
32 libhardware \
33 libhardware_legacy
34
35LOCAL_MODULE:= libui
36
Andy McFaddenb9e52a02009-09-09 08:00:09 -070037ifeq ($(TARGET_SIMULATOR),true)
38 LOCAL_LDLIBS += -lpthread
39endif
40
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080041include $(BUILD_SHARED_LIBRARY)
Jeff Brownfd0358292010-06-30 16:10:35 -070042
43
44# Include subdirectory makefiles
45# ============================================================
46
47# If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework
48# team really wants is to build the stuff defined by this makefile.
49ifeq (,$(ONE_SHOT_MAKEFILE))
50include $(call first-makefiles-under,$(LOCAL_PATH))
51endif