blob: a5698f27e2bdf4b8799407720a3cb72298a27954 [file] [log] [blame]
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
5 clz.cpp.arm \
6 DisplayHardware/DisplayHardware.cpp \
7 DisplayHardware/DisplayHardwareBase.cpp \
8 GPUHardware/GPUHardware.cpp \
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08009 BlurFilter.cpp.arm \
10 CPUGauge.cpp \
11 Layer.cpp \
12 LayerBase.cpp \
13 LayerBuffer.cpp \
14 LayerBlur.cpp \
15 LayerBitmap.cpp \
16 LayerDim.cpp \
17 LayerOrientationAnim.cpp \
Mathias Agopian0d1318b2009-03-27 17:58:20 -070018 LayerOrientationAnimRotate.cpp \
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080019 OrientationAnimation.cpp \
20 SurfaceFlinger.cpp \
21 Tokenizer.cpp \
22 Transform.cpp \
23 VRamHeap.cpp
24
25
26# need "-lrt" on Linux simulator to pick up clock_gettime
27ifeq ($(TARGET_SIMULATOR),true)
28 ifeq ($(HOST_OS),linux)
29 LOCAL_LDLIBS += -lrt
30 endif
31endif
32
33LOCAL_SHARED_LIBRARIES := \
34 libhardware \
35 libutils \
Mathias Agopian208059f2009-05-18 15:08:03 -070036 libbinder \
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080037 libcutils \
38 libui \
39 libcorecg \
40 libsgl \
41 libpixelflinger \
42 libEGL \
43 libGLESv1_CM
44
45LOCAL_C_INCLUDES := \
46 $(call include-path-for, corecg graphics)
47
48LOCAL_MODULE:= libsurfaceflinger
49
50include $(BUILD_SHARED_LIBRARY)