Mathias Agopian | 9cce325 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_SRC_FILES:= \ |
| 5 | ISurfaceComposer.cpp \ |
| 6 | ISurface.cpp \ |
Mathias Agopian | 7e27f05 | 2010-05-28 14:22:23 -0700 | [diff] [blame] | 7 | ISurfaceComposerClient.cpp \ |
Jamie Gennis | 9a78c90 | 2011-01-12 18:30:40 -0800 | [diff] [blame] | 8 | IGraphicBufferAlloc.cpp \ |
Mathias Agopian | 9cce325 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 9 | LayerState.cpp \ |
| 10 | SharedBufferStack.cpp \ |
| 11 | Surface.cpp \ |
| 12 | SurfaceComposerClient.cpp |
| 13 | |
| 14 | LOCAL_SHARED_LIBRARIES := \ |
| 15 | libcutils \ |
| 16 | libutils \ |
| 17 | libbinder \ |
| 18 | libhardware \ |
| 19 | libui |
| 20 | |
| 21 | LOCAL_MODULE:= libsurfaceflinger_client |
| 22 | |
| 23 | ifeq ($(TARGET_SIMULATOR),true) |
| 24 | LOCAL_LDLIBS += -lpthread |
| 25 | endif |
| 26 | |
| 27 | include $(BUILD_SHARED_LIBRARY) |