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:= \ |
| 5 | Camera.cpp \ |
| 6 | CameraParameters.cpp \ |
Mathias Agopian | 6cf50a7 | 2009-08-06 16:05:39 -0700 | [diff] [blame] | 7 | EGLUtils.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 \ |
Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 11 | GraphicBuffer.cpp \ |
| 12 | GraphicBufferAllocator.cpp \ |
| 13 | GraphicBufferMapper.cpp \ |
The Android Open Source Project | edbf3b6 | 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 | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 26 | Rect.cpp \ |
| 27 | Region.cpp \ |
Mathias Agopian | cbb288b | 2009-09-07 16:32:45 -0700 | [diff] [blame] | 28 | SharedBufferStack.cpp \ |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 29 | Surface.cpp \ |
Mathias Agopian | e700501 | 2009-10-07 16:44:10 -0700 | [diff] [blame] | 30 | SurfaceComposerClient.cpp |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 31 | |
| 32 | LOCAL_SHARED_LIBRARIES := \ |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 33 | libcutils \ |
| 34 | libutils \ |
Mathias Agopian | 6cf50a7 | 2009-08-06 16:05:39 -0700 | [diff] [blame] | 35 | libEGL \ |
Mathias Agopian | 208059f | 2009-05-18 15:08:03 -0700 | [diff] [blame] | 36 | libbinder \ |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 37 | libpixelflinger \ |
| 38 | libhardware \ |
| 39 | libhardware_legacy |
| 40 | |
| 41 | LOCAL_MODULE:= libui |
| 42 | |
Andy McFadden | e0a963b | 2009-09-09 08:00:09 -0700 | [diff] [blame] | 43 | ifeq ($(TARGET_SIMULATOR),true) |
| 44 | LOCAL_LDLIBS += -lpthread |
| 45 | endif |
| 46 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 47 | include $(BUILD_SHARED_LIBRARY) |