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