blob: ce3c71a7d9bb9ffd128a9606068047b5dd37b05e [file] [log] [blame]
Mathias Agopian000479f2010-02-09 17:46:37 -08001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
5 ISurfaceComposer.cpp \
6 ISurface.cpp \
Mathias Agopian770492c2010-05-28 14:22:23 -07007 ISurfaceComposerClient.cpp \
Mathias Agopian000479f2010-02-09 17:46:37 -08008 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)