7e27f05739
the most important change here is the renaming of ISurfaceFlingerClient to ISurfaceComposerClient Change-Id: I94e18b0417f50e06f21377446639c61f65f959b3
27 lines
458 B
Makefile
27 lines
458 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
ISurfaceComposer.cpp \
|
|
ISurface.cpp \
|
|
ISurfaceComposerClient.cpp \
|
|
LayerState.cpp \
|
|
SharedBufferStack.cpp \
|
|
Surface.cpp \
|
|
SurfaceComposerClient.cpp
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libcutils \
|
|
libutils \
|
|
libbinder \
|
|
libhardware \
|
|
libui
|
|
|
|
LOCAL_MODULE:= libsurfaceflinger_client
|
|
|
|
ifeq ($(TARGET_SIMULATOR),true)
|
|
LOCAL_LDLIBS += -lpthread
|
|
endif
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|