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:= \ |
| 5 | Camera.cpp \ |
| 6 | CameraParameters.cpp \ |
Mathias Agopian | 265d9c0 | 2009-08-06 16:05:39 -0700 | [diff] [blame] | 7 | EGLUtils.cpp \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 8 | EventHub.cpp \ |
| 9 | EventRecurrence.cpp \ |
Mathias Agopian | dff8e58 | 2009-05-04 14:17:04 -0700 | [diff] [blame] | 10 | FramebufferNativeWindow.cpp \ |
Mathias Agopian | 6950e42 | 2009-10-05 17:07:12 -0700 | [diff] [blame^] | 11 | GraphicBuffer.cpp \ |
| 12 | GraphicBufferAllocator.cpp \ |
| 13 | GraphicBufferMapper.cpp \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 14 | KeyLayoutMap.cpp \ |
| 15 | KeyCharacterMap.cpp \ |
| 16 | ICamera.cpp \ |
| 17 | ICameraClient.cpp \ |
| 18 | ICameraService.cpp \ |
| 19 | IOverlay.cpp \ |
| 20 | ISurfaceComposer.cpp \ |
| 21 | ISurface.cpp \ |
| 22 | ISurfaceFlingerClient.cpp \ |
| 23 | LayerState.cpp \ |
| 24 | Overlay.cpp \ |
| 25 | PixelFormat.cpp \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 26 | Rect.cpp \ |
| 27 | Region.cpp \ |
Mathias Agopian | 9779b22 | 2009-09-07 16:32:45 -0700 | [diff] [blame] | 28 | SharedBufferStack.cpp \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 29 | Surface.cpp \ |
| 30 | SurfaceComposerClient.cpp \ |
Mathias Agopian | 864c0d5 | 2009-06-24 23:12:06 -0700 | [diff] [blame] | 31 | SurfaceFlingerSynchro.cpp |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 32 | |
| 33 | LOCAL_SHARED_LIBRARIES := \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 34 | libcutils \ |
| 35 | libutils \ |
Mathias Agopian | 265d9c0 | 2009-08-06 16:05:39 -0700 | [diff] [blame] | 36 | libEGL \ |
Mathias Agopian | 25ba5b6 | 2009-05-18 15:08:03 -0700 | [diff] [blame] | 37 | libbinder \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 38 | libpixelflinger \ |
| 39 | libhardware \ |
| 40 | libhardware_legacy |
| 41 | |
| 42 | LOCAL_MODULE:= libui |
| 43 | |
Andy McFadden | b9e52a0 | 2009-09-09 08:00:09 -0700 | [diff] [blame] | 44 | ifeq ($(TARGET_SIMULATOR),true) |
| 45 | LOCAL_LDLIBS += -lpthread |
| 46 | endif |
| 47 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 48 | include $(BUILD_SHARED_LIBRARY) |