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 \ |
| 7 | EGLDisplaySurface.cpp \ |
| 8 | EGLNativeWindowSurface.cpp \ |
| 9 | EventHub.cpp \ |
| 10 | EventRecurrence.cpp \ |
| 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 | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 23 | Rect.cpp \ |
| 24 | Region.cpp \ |
| 25 | Surface.cpp \ |
| 26 | SurfaceComposerClient.cpp \ |
| 27 | SurfaceFlingerSynchro.cpp \ |
| 28 | Time.cpp |
| 29 | |
| 30 | LOCAL_SHARED_LIBRARIES := \ |
| 31 | libcorecg \ |
| 32 | libcutils \ |
| 33 | libutils \ |
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) |