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 \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 14 | IOverlay.cpp \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 15 | Overlay.cpp \ |
| 16 | PixelFormat.cpp \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 17 | Rect.cpp \ |
Mathias Agopian | 000479f | 2010-02-09 17:46:37 -0800 | [diff] [blame^] | 18 | Region.cpp |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 19 | |
| 20 | LOCAL_SHARED_LIBRARIES := \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 21 | libcutils \ |
| 22 | libutils \ |
Mathias Agopian | 265d9c0 | 2009-08-06 16:05:39 -0700 | [diff] [blame] | 23 | libEGL \ |
Mathias Agopian | 25ba5b6 | 2009-05-18 15:08:03 -0700 | [diff] [blame] | 24 | libbinder \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 25 | libpixelflinger \ |
| 26 | libhardware \ |
| 27 | libhardware_legacy |
| 28 | |
| 29 | LOCAL_MODULE:= libui |
| 30 | |
Andy McFadden | b9e52a0 | 2009-09-09 08:00:09 -0700 | [diff] [blame] | 31 | ifeq ($(TARGET_SIMULATOR),true) |
| 32 | LOCAL_LDLIBS += -lpthread |
| 33 | endif |
| 34 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 35 | include $(BUILD_SHARED_LIBRARY) |