blob: d9bca04b0ba3f6f325cfd7a3d33a0e5c6b97f808 [file] [log] [blame]
Dan Stoza01049c82014-11-11 10:32:31 -08001LOCAL_PATH := $(call my-dir)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002include $(CLEAR_VARS)
3
Jesse Hall24cd98e2014-07-13 14:37:16 -07004LOCAL_CLANG := true
5
Jesse Halle9b23b62014-07-14 15:32:59 -07006LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
Dan Stoza01049c82014-11-11 10:32:31 -08007LOCAL_SRC_FILES := \
Jesse Hall99c7dbb2013-03-14 14:29:29 -07008 Client.cpp \
9 DisplayDevice.cpp \
Jamie Gennisfaf77cc2013-07-30 15:10:32 -070010 DispSync.cpp \
Jamie Gennisd1700752013-10-14 12:22:52 -070011 EventControlThread.cpp \
Wei Wangf9b05ee2017-07-19 20:59:39 -070012 StartPropertySetThread.cpp \
Jesse Hall99c7dbb2013-03-14 14:29:29 -070013 EventThread.cpp \
14 FrameTracker.cpp \
Jesse Hallfc038bd2016-03-26 22:20:22 -070015 GpuService.cpp \
Jesse Hall99c7dbb2013-03-14 14:29:29 -070016 Layer.cpp \
chaviw13fdc492017-06-27 12:40:18 -070017 ColorLayer.cpp \
Fabien Sanglard7b1563a2016-10-13 12:05:28 -070018 LayerRejecter.cpp \
Robert Carr2047fae2016-11-28 14:09:09 -080019 LayerVector.cpp \
Jesse Hall99c7dbb2013-03-14 14:29:29 -070020 MessageQueue.cpp \
Dan Stozab9b08832014-03-13 11:55:57 -070021 MonitoredProducer.cpp \
Jesse Hall99c7dbb2013-03-14 14:29:29 -070022 SurfaceFlingerConsumer.cpp \
Irvelc274c632016-06-13 16:44:08 -070023 SurfaceInterceptor.cpp \
Jesse Hall99c7dbb2013-03-14 14:29:29 -070024 Transform.cpp \
Chia-I Wuaab99f52016-10-05 12:59:58 +080025 DisplayHardware/ComposerHal.cpp \
Jesse Hall99c7dbb2013-03-14 14:29:29 -070026 DisplayHardware/FramebufferSurface.cpp \
Dan Stoza651bf312015-10-23 17:03:17 -070027 DisplayHardware/HWC2.cpp \
Chia-I Wuaaff73f2017-02-13 12:28:24 -080028 DisplayHardware/HWComposerBufferCache.cpp \
Jesse Hall99c7dbb2013-03-14 14:29:29 -070029 DisplayHardware/PowerHAL.cpp \
30 DisplayHardware/VirtualDisplaySurface.cpp \
Mathias Agopianff2ed702013-09-01 21:36:12 -070031 Effects/Daltonizer.cpp \
Mathias Agopian85cce372013-06-04 21:50:31 -070032 EventLog/EventLogTags.logtags \
Mathias Agopian875d8e12013-06-07 15:35:48 -070033 EventLog/EventLog.cpp \
Mathias Agopian3f844832013-08-07 21:24:32 -070034 RenderEngine/Description.cpp \
35 RenderEngine/Mesh.cpp \
36 RenderEngine/Program.cpp \
37 RenderEngine/ProgramCache.cpp \
Mathias Agopian875d8e12013-06-07 15:35:48 -070038 RenderEngine/GLExtensions.cpp \
39 RenderEngine/RenderEngine.cpp \
Mathias Agopian49457ac2013-08-14 18:20:17 -070040 RenderEngine/Texture.cpp \
Irvelc274c632016-06-13 16:44:08 -070041 RenderEngine/GLES20RenderEngine.cpp \
chaviw1d044282017-09-27 12:19:28 -070042 LayerProtoHelper.cpp \
chaviwa76b2712017-09-20 12:02:26 -070043 RenderArea.cpp \
Mathias Agopian875d8e12013-06-07 15:35:48 -070044
Irvelc274c632016-06-13 16:44:08 -070045LOCAL_MODULE := libsurfaceflinger
Jesse Hall8b0d55e2016-03-31 19:29:36 -070046LOCAL_C_INCLUDES := \
Irvelc274c632016-06-13 16:44:08 -070047 frameworks/native/vulkan/include \
48 external/vulkan-validation-layers/libs/vkjson \
Chia-I Wucd8d7f02016-11-16 11:02:31 +080049 system/libhwbinder/fast_msgq/include \
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080050
Dan Stoza01049c82014-11-11 10:32:31 -080051LOCAL_CFLAGS := -DLOG_TAG=\"SurfaceFlinger\"
Mathias Agopian076b1cc2009-04-10 14:24:30 -070052LOCAL_CFLAGS += -DGL_GLEXT_PROTOTYPES -DEGL_EGLEXT_PROTOTYPES
Dan Stoza9e56aa02015-11-02 13:00:03 -080053
Fabien Sanglard9d96de42016-10-11 00:15:18 +000054ifeq ($(TARGET_USES_HWC2),true)
55 LOCAL_CFLAGS += -DUSE_HWC2
56 LOCAL_SRC_FILES += \
57 SurfaceFlinger.cpp \
58 DisplayHardware/HWComposer.cpp
59else
60 LOCAL_SRC_FILES += \
61 SurfaceFlinger_hwc1.cpp \
62 DisplayHardware/HWComposer_hwc1.cpp
63endif
64
Michael Lentine7306c672014-07-30 13:00:37 -070065LOCAL_CFLAGS += -fvisibility=hidden -Werror=format
Mathias Agopianb6df7d02013-05-09 14:53:35 -070066
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -080067LOCAL_STATIC_LIBRARIES := \
68 libhwcomposer-command-buffer \
69 libtrace_proto \
70 libvkjson \
71 libvr_manager \
Vishnu Nair35798872017-10-06 16:00:36 -070072 libvrflinger \
73 libserviceutils
74
75LOCAL_EXPORT_STATIC_LIBRARY_HEADERS := libserviceutils
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -080076
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080077LOCAL_SHARED_LIBRARIES := \
Daniel Nicoara95a99a12017-03-21 15:30:45 -040078 android.frameworks.vr.composer@1.0 \
Chia-I Wuaab99f52016-10-05 12:59:58 +080079 android.hardware.graphics.allocator@2.0 \
80 android.hardware.graphics.composer@2.1 \
Jiyong Park4b20c2e2017-01-14 19:45:11 +090081 android.hardware.configstore@1.0 \
Jaesoo Lee585e32f2017-03-30 15:25:19 +090082 android.hardware.configstore-utils \
Andreas Gampe89fd4f72014-11-13 14:18:56 -080083 libcutils \
84 liblog \
85 libdl \
Chia-I Wucd8d7f02016-11-16 11:02:31 +080086 libfmq \
Andreas Gampe89fd4f72014-11-13 14:18:56 -080087 libhardware \
Yifan Hong67a47622016-11-17 13:02:06 -080088 libhidlbase \
89 libhidltransport \
Chia-I Wuaab99f52016-10-05 12:59:58 +080090 libhwbinder \
Andreas Gampe89fd4f72014-11-13 14:18:56 -080091 libutils \
92 libEGL \
93 libGLESv1_CM \
94 libGLESv2 \
95 libbinder \
96 libui \
97 libgui \
Jesse Hall8b0d55e2016-03-31 19:29:36 -070098 libpowermanager \
Irvelc274c632016-06-13 16:44:08 -070099 libvulkan \
Chia-I Wucd8d7f02016-11-16 11:02:31 +0800100 libsync \
Colin Cross63549382016-10-26 12:52:53 -0700101 libprotobuf-cpp-lite \
Ruchi Kandoib5ee1782016-10-04 17:51:50 -0700102 libbase \
chaviw1d044282017-09-27 12:19:28 -0700103 android.hardware.power@1.0 \
104 liblayers_proto
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800105
Chia-I Wuaab99f52016-10-05 12:59:58 +0800106LOCAL_EXPORT_SHARED_LIBRARY_HEADERS := \
107 android.hardware.graphics.allocator@2.0 \
108 android.hardware.graphics.composer@2.1 \
Yifan Hong67a47622016-11-17 13:02:06 -0800109 libhidlbase \
110 libhidltransport \
Chia-I Wuaab99f52016-10-05 12:59:58 +0800111 libhwbinder
112
Dan Stoza2b6d38e2017-06-01 16:40:30 -0700113LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code -std=c++1z
Andreas Gampe89fd4f72014-11-13 14:18:56 -0800114
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800115include $(BUILD_SHARED_LIBRARY)
Keun young Park63f165f2012-08-31 10:53:36 -0700116
117###############################################################
Mathias Agopian7ffaa7c2013-07-22 12:20:28 -0700118# build surfaceflinger's executable
119include $(CLEAR_VARS)
120
Dan Stoza01049c82014-11-11 10:32:31 -0800121LOCAL_CLANG := true
Mathias Agopian4f4f0942013-08-19 17:26:18 -0700122
Dimitry Ivanovf06248f2016-08-01 14:13:37 -0700123LOCAL_LDFLAGS_32 := -Wl,--version-script,art/sigchainlib/version-script32.txt -Wl,--export-dynamic
124LOCAL_LDFLAGS_64 := -Wl,--version-script,art/sigchainlib/version-script64.txt -Wl,--export-dynamic
Dan Stoza01049c82014-11-11 10:32:31 -0800125LOCAL_CFLAGS := -DLOG_TAG=\"SurfaceFlinger\"
Dan Stoza01049c82014-11-11 10:32:31 -0800126
Tom Cherry74155992015-08-14 13:01:23 -0700127LOCAL_INIT_RC := surfaceflinger.rc
128
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000129ifeq ($(TARGET_USES_HWC2),true)
130 LOCAL_CFLAGS += -DUSE_HWC2
131endif
132
Dan Stoza01049c82014-11-11 10:32:31 -0800133LOCAL_SRC_FILES := \
Andreas Gampe89fd4f72014-11-13 14:18:56 -0800134 main_surfaceflinger.cpp
Mathias Agopian7ffaa7c2013-07-22 12:20:28 -0700135
136LOCAL_SHARED_LIBRARIES := \
Steven Moreland6ad20f72017-05-16 17:42:50 -0700137 android.frameworks.displayservice@1.0 \
Chia-I Wub2784042017-03-30 11:56:21 -0700138 android.hardware.configstore@1.0 \
139 android.hardware.configstore-utils \
140 android.hardware.graphics.allocator@2.0 \
Andreas Gampe89fd4f72014-11-13 14:18:56 -0800141 libsurfaceflinger \
142 libcutils \
Steven Moreland6ad20f72017-05-16 17:42:50 -0700143 libdisplayservicehidl \
Andreas Gampe89fd4f72014-11-13 14:18:56 -0800144 liblog \
145 libbinder \
Chia-I Wub2784042017-03-30 11:56:21 -0700146 libhidlbase \
147 libhidltransport \
Andreas Gampe89fd4f72014-11-13 14:18:56 -0800148 libutils \
Mathias Agopiana9347642017-02-13 16:42:28 -0800149 libui \
Pawin Vongmasa6e1193a2017-03-07 13:08:40 -0800150 libgui \
chaviw1d044282017-09-27 12:19:28 -0700151 libdl \
152 liblayers_proto
Mathias Agopian7ffaa7c2013-07-22 12:20:28 -0700153
Dmitriy Ivanov4340a142014-10-20 14:17:26 -0700154LOCAL_WHOLE_STATIC_LIBRARIES := libsigchain
Vishnu Nair35798872017-10-06 16:00:36 -0700155LOCAL_STATIC_LIBRARIES := libtrace_proto \
156 libserviceutils
Dmitriy Ivanov4340a142014-10-20 14:17:26 -0700157
Dan Stoza01049c82014-11-11 10:32:31 -0800158LOCAL_MODULE := surfaceflinger
Mathias Agopian7ffaa7c2013-07-22 12:20:28 -0700159
Colin Cross89450d42014-02-20 15:36:21 -0800160ifdef TARGET_32_BIT_SURFACEFLINGER
161LOCAL_32_BIT_ONLY := true
162endif
163
Andreas Gampe89fd4f72014-11-13 14:18:56 -0800164LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code
165
Mathias Agopian7ffaa7c2013-07-22 12:20:28 -0700166include $(BUILD_EXECUTABLE)
167
168###############################################################
Keun young Park63f165f2012-08-31 10:53:36 -0700169# uses jni which may not be available in PDK
170ifneq ($(wildcard libnativehelper/include),)
171include $(CLEAR_VARS)
Mathias Agopian1b3aeb42012-10-07 16:41:12 -0700172
Dan Stoza01049c82014-11-11 10:32:31 -0800173LOCAL_CLANG := true
174
175LOCAL_CFLAGS := -DLOG_TAG=\"SurfaceFlinger\"
Dan Stoza01049c82014-11-11 10:32:31 -0800176
177LOCAL_SRC_FILES := \
Keun young Park63f165f2012-08-31 10:53:36 -0700178 DdmConnection.cpp
179
180LOCAL_SHARED_LIBRARIES := \
Andreas Gampe89fd4f72014-11-13 14:18:56 -0800181 libcutils \
182 liblog \
183 libdl
Keun young Park63f165f2012-08-31 10:53:36 -0700184
Dan Stoza01049c82014-11-11 10:32:31 -0800185LOCAL_MODULE := libsurfaceflinger_ddmconnection
Keun young Park63f165f2012-08-31 10:53:36 -0700186
Andreas Gampe89fd4f72014-11-13 14:18:56 -0800187LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code
188
Keun young Park63f165f2012-08-31 10:53:36 -0700189include $(BUILD_SHARED_LIBRARY)
190endif # libnativehelper
Robert Carreb893992017-03-10 13:09:00 -0800191
192include $(call first-makefiles-under,$(LOCAL_PATH))