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 | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 5 | BufferMapper.cpp \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 6 | Camera.cpp \ |
| 7 | CameraParameters.cpp \ |
Mathias Agopian | 265d9c0 | 2009-08-06 16:05:39 -0700 | [diff] [blame^] | 8 | EGLUtils.cpp \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 9 | EventHub.cpp \ |
| 10 | EventRecurrence.cpp \ |
Mathias Agopian | dff8e58 | 2009-05-04 14:17:04 -0700 | [diff] [blame] | 11 | FramebufferNativeWindow.cpp \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 12 | KeyLayoutMap.cpp \ |
| 13 | KeyCharacterMap.cpp \ |
| 14 | ICamera.cpp \ |
| 15 | ICameraClient.cpp \ |
| 16 | ICameraService.cpp \ |
| 17 | IOverlay.cpp \ |
| 18 | ISurfaceComposer.cpp \ |
| 19 | ISurface.cpp \ |
| 20 | ISurfaceFlingerClient.cpp \ |
| 21 | LayerState.cpp \ |
| 22 | Overlay.cpp \ |
| 23 | PixelFormat.cpp \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 24 | Rect.cpp \ |
| 25 | Region.cpp \ |
| 26 | Surface.cpp \ |
| 27 | SurfaceComposerClient.cpp \ |
Mathias Agopian | 864c0d5 | 2009-06-24 23:12:06 -0700 | [diff] [blame] | 28 | SurfaceFlingerSynchro.cpp |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 29 | |
| 30 | LOCAL_SHARED_LIBRARIES := \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 31 | libcutils \ |
| 32 | libutils \ |
Mathias Agopian | 265d9c0 | 2009-08-06 16:05:39 -0700 | [diff] [blame^] | 33 | libEGL \ |
Mathias Agopian | 25ba5b6 | 2009-05-18 15:08:03 -0700 | [diff] [blame] | 34 | libbinder \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 35 | libpixelflinger \ |
| 36 | libhardware \ |
| 37 | libhardware_legacy |
| 38 | |
| 39 | LOCAL_MODULE:= libui |
| 40 | |
| 41 | include $(BUILD_SHARED_LIBRARY) |