The Android Open Source Project | 9066cfe | 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 | 265d9c0 | 2009-08-06 16:05:39 -0700 | [diff] [blame] | 5 | EGLUtils.cpp \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 6 | EventHub.cpp \ |
| 7 | EventRecurrence.cpp \ |
Mathias Agopian | dff8e58 | 2009-05-04 14:17:04 -0700 | [diff] [blame] | 8 | FramebufferNativeWindow.cpp \ |
Mathias Agopian | 6950e42 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 9 | GraphicBuffer.cpp \ |
| 10 | GraphicBufferAllocator.cpp \ |
| 11 | GraphicBufferMapper.cpp \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 12 | KeyLayoutMap.cpp \ |
| 13 | KeyCharacterMap.cpp \ |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 14 | Input.cpp \ |
| 15 | InputDispatcher.cpp \ |
| 16 | InputManager.cpp \ |
| 17 | InputReader.cpp \ |
| 18 | InputTransport.cpp \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 19 | IOverlay.cpp \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 20 | Overlay.cpp \ |
| 21 | PixelFormat.cpp \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 22 | Rect.cpp \ |
Mathias Agopian | 000479f | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 23 | Region.cpp |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 24 | |
| 25 | LOCAL_SHARED_LIBRARIES := \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 26 | libcutils \ |
| 27 | libutils \ |
Mathias Agopian | 265d9c0 | 2009-08-06 16:05:39 -0700 | [diff] [blame] | 28 | libEGL \ |
Mathias Agopian | 25ba5b6 | 2009-05-18 15:08:03 -0700 | [diff] [blame] | 29 | libbinder \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 30 | libpixelflinger \ |
| 31 | libhardware \ |
| 32 | libhardware_legacy |
| 33 | |
| 34 | LOCAL_MODULE:= libui |
| 35 | |
Andy McFadden | b9e52a0 | 2009-09-09 08:00:09 -0700 | [diff] [blame] | 36 | ifeq ($(TARGET_SIMULATOR),true) |
| 37 | LOCAL_LDLIBS += -lpthread |
| 38 | endif |
| 39 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 40 | include $(BUILD_SHARED_LIBRARY) |