The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_SRC_FILES:= \ |
Mathias Agopian | 6cf50a7 | 2009-08-06 16:05:39 -0700 | [diff] [blame] | 5 | EGLUtils.cpp \ |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 6 | EventHub.cpp \ |
| 7 | EventRecurrence.cpp \ |
Mathias Agopian | 0926f50 | 2009-05-04 14:17:04 -0700 | [diff] [blame] | 8 | FramebufferNativeWindow.cpp \ |
Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 9 | GraphicBuffer.cpp \ |
| 10 | GraphicBufferAllocator.cpp \ |
| 11 | GraphicBufferMapper.cpp \ |
Mathias Agopian | 35b48d1 | 2010-09-13 22:57:58 -0700 | [diff] [blame] | 12 | GraphicLog.cpp \ |
Jeff Brown | a3477c8 | 2010-11-10 16:03:06 -0800 | [diff] [blame^] | 13 | Keyboard.cpp \ |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 14 | KeyLayoutMap.cpp \ |
| 15 | KeyCharacterMap.cpp \ |
Jeff Brown | e839a58 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 16 | Input.cpp \ |
| 17 | InputDispatcher.cpp \ |
| 18 | InputManager.cpp \ |
| 19 | InputReader.cpp \ |
| 20 | InputTransport.cpp \ |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 21 | IOverlay.cpp \ |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 22 | Overlay.cpp \ |
| 23 | PixelFormat.cpp \ |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 24 | Rect.cpp \ |
Mathias Agopian | 9cce325 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 25 | Region.cpp |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 26 | |
| 27 | LOCAL_SHARED_LIBRARIES := \ |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 28 | libcutils \ |
| 29 | libutils \ |
Mathias Agopian | 6cf50a7 | 2009-08-06 16:05:39 -0700 | [diff] [blame] | 30 | libEGL \ |
Mathias Agopian | 208059f | 2009-05-18 15:08:03 -0700 | [diff] [blame] | 31 | libbinder \ |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 32 | libpixelflinger \ |
| 33 | libhardware \ |
| 34 | libhardware_legacy |
| 35 | |
| 36 | LOCAL_MODULE:= libui |
| 37 | |
Andy McFadden | e0a963b | 2009-09-09 08:00:09 -0700 | [diff] [blame] | 38 | ifeq ($(TARGET_SIMULATOR),true) |
| 39 | LOCAL_LDLIBS += -lpthread |
| 40 | endif |
| 41 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 42 | include $(BUILD_SHARED_LIBRARY) |
Jeff Brown | 8575a87 | 2010-06-30 16:10:35 -0700 | [diff] [blame] | 43 | |
| 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. |
| 50 | ifeq (,$(ONE_SHOT_MAKEFILE)) |
| 51 | include $(call first-makefiles-under,$(LOCAL_PATH)) |
| 52 | endif |