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 \ |
Mathias Agopian | 6cf50a7 | 2009-08-06 16:05:39 -0700 | [diff] [blame] | 8 | EGLUtils.cpp \ |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 9 | EventHub.cpp \ |
| 10 | EventRecurrence.cpp \ |
Mathias Agopian | 0926f50 | 2009-05-04 14:17:04 -0700 | [diff] [blame] | 11 | FramebufferNativeWindow.cpp \ |
The Android Open Source Project | edbf3b6 | 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 | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 24 | Rect.cpp \ |
| 25 | Region.cpp \ |
Mathias Agopian | cbb288b | 2009-09-07 16:32:45 -0700 | [diff] [blame] | 26 | SharedBufferStack.cpp \ |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 27 | Surface.cpp \ |
Mathias Agopian | cbb288b | 2009-09-07 16:32:45 -0700 | [diff] [blame] | 28 | SurfaceBuffer.cpp \ |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 29 | SurfaceComposerClient.cpp \ |
Mathias Agopian | a8664df | 2009-06-24 23:12:06 -0700 | [diff] [blame] | 30 | SurfaceFlingerSynchro.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) |