blob: 4a0faf06a12c82a67cd5c056460cdc1042d9233c [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 \
Jamie Gennisf7acf162011-01-12 18:30:40 -08008 IGraphicBufferAlloc.cpp \
Mathias Agopian000479f2010-02-09 17:46:37 -08009 LayerState.cpp \
10 SharedBufferStack.cpp \
11 Surface.cpp \
12 SurfaceComposerClient.cpp
13
14LOCAL_SHARED_LIBRARIES := \
15 libcutils \
16 libutils \
17 libbinder \
18 libhardware \
19 libui
20
21LOCAL_MODULE:= libsurfaceflinger_client
22
23ifeq ($(TARGET_SIMULATOR),true)
24 LOCAL_LDLIBS += -lpthread
25endif
26
27include $(BUILD_SHARED_LIBRARY)