1LOCAL_PATH:= $(call my-dir) 2include $(CLEAR_VARS) 3 4LOCAL_SRC_FILES:= \ 5 ISurfaceComposer.cpp \ 6 ISurface.cpp \ 7 ISurfaceComposerClient.cpp \ 8 LayerState.cpp \ 9 SharedBufferStack.cpp \ 10 Surface.cpp \ 11 SurfaceComposerClient.cpp 12 13LOCAL_SHARED_LIBRARIES := \ 14 libcutils \ 15 libutils \ 16 libbinder \ 17 libhardware \ 18 libui 19 20LOCAL_MODULE:= libsurfaceflinger_client 21 22ifeq ($(TARGET_SIMULATOR),true) 23 LOCAL_LDLIBS += -lpthread 24endif 25 26include $(BUILD_SHARED_LIBRARY) 27