blob: 3f8ab3fc3f0f5698968cf44c8be97738f970778e [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 \
Adrian Roos1e1a1282017-11-01 19:05:31 +010024 SurfaceTracing.cpp \
Jesse Hall99c7dbb2013-03-14 14:29:29 -070025 Transform.cpp \
Chia-I Wuaab99f52016-10-05 12:59:58 +080026 DisplayHardware/ComposerHal.cpp \
Jesse Hall99c7dbb2013-03-14 14:29:29 -070027 DisplayHardware/FramebufferSurface.cpp \
Dan Stoza651bf312015-10-23 17:03:17 -070028 DisplayHardware/HWC2.cpp \
Chia-I Wuaaff73f2017-02-13 12:28:24 -080029 DisplayHardware/HWComposerBufferCache.cpp \
Jesse Hall99c7dbb2013-03-14 14:29:29 -070030 DisplayHardware/PowerHAL.cpp \
31 DisplayHardware/VirtualDisplaySurface.cpp \
Mathias Agopianff2ed702013-09-01 21:36:12 -070032 Effects/Daltonizer.cpp \
Mathias Agopian85cce372013-06-04 21:50:31 -070033 EventLog/EventLogTags.logtags \
Mathias Agopian875d8e12013-06-07 15:35:48 -070034 EventLog/EventLog.cpp \
Mathias Agopian3f844832013-08-07 21:24:32 -070035 RenderEngine/Description.cpp \
36 RenderEngine/Mesh.cpp \
37 RenderEngine/Program.cpp \
38 RenderEngine/ProgramCache.cpp \
Mathias Agopian875d8e12013-06-07 15:35:48 -070039 RenderEngine/GLExtensions.cpp \
40 RenderEngine/RenderEngine.cpp \
Mathias Agopian49457ac2013-08-14 18:20:17 -070041 RenderEngine/Texture.cpp \
Irvelc274c632016-06-13 16:44:08 -070042 RenderEngine/GLES20RenderEngine.cpp \
chaviw1d044282017-09-27 12:19:28 -070043 LayerProtoHelper.cpp \
chaviwa76b2712017-09-20 12:02:26 -070044 RenderArea.cpp \
Mathias Agopian875d8e12013-06-07 15:35:48 -070045
Irvelc274c632016-06-13 16:44:08 -070046LOCAL_MODULE := libsurfaceflinger
Jesse Hall8b0d55e2016-03-31 19:29:36 -070047LOCAL_C_INCLUDES := \
Irvelc274c632016-06-13 16:44:08 -070048 frameworks/native/vulkan/include \
49 external/vulkan-validation-layers/libs/vkjson \
Chia-I Wucd8d7f02016-11-16 11:02:31 +080050 system/libhwbinder/fast_msgq/include \
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080051
Dan Stoza01049c82014-11-11 10:32:31 -080052LOCAL_CFLAGS := -DLOG_TAG=\"SurfaceFlinger\"
Mathias Agopian076b1cc2009-04-10 14:24:30 -070053LOCAL_CFLAGS += -DGL_GLEXT_PROTOTYPES -DEGL_EGLEXT_PROTOTYPES
Dan Stoza9e56aa02015-11-02 13:00:03 -080054
Fabien Sanglard9d96de42016-10-11 00:15:18 +000055ifeq ($(TARGET_USES_HWC2),true)
56 LOCAL_CFLAGS += -DUSE_HWC2
57 LOCAL_SRC_FILES += \
58 SurfaceFlinger.cpp \
59 DisplayHardware/HWComposer.cpp
60else
61 LOCAL_SRC_FILES += \
62 SurfaceFlinger_hwc1.cpp \
63 DisplayHardware/HWComposer_hwc1.cpp
64endif
65
Michael Lentine7306c672014-07-30 13:00:37 -070066LOCAL_CFLAGS += -fvisibility=hidden -Werror=format
Mathias Agopianb6df7d02013-05-09 14:53:35 -070067
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -080068LOCAL_STATIC_LIBRARIES := \
69 libhwcomposer-command-buffer \
70 libtrace_proto \
71 libvkjson \
72 libvr_manager \
Vishnu Nair35798872017-10-06 16:00:36 -070073 libvrflinger \
74 libserviceutils
75
76LOCAL_EXPORT_STATIC_LIBRARY_HEADERS := libserviceutils
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -080077
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080078LOCAL_SHARED_LIBRARIES := \
Daniel Nicoara95a99a12017-03-21 15:30:45 -040079 android.frameworks.vr.composer@1.0 \
Chia-I Wuaab99f52016-10-05 12:59:58 +080080 android.hardware.graphics.allocator@2.0 \
81 android.hardware.graphics.composer@2.1 \
Jiyong Park4b20c2e2017-01-14 19:45:11 +090082 android.hardware.configstore@1.0 \
Jaesoo Lee585e32f2017-03-30 15:25:19 +090083 android.hardware.configstore-utils \
Andreas Gampe89fd4f72014-11-13 14:18:56 -080084 libcutils \
85 liblog \
86 libdl \
Chia-I Wucd8d7f02016-11-16 11:02:31 +080087 libfmq \
Andreas Gampe89fd4f72014-11-13 14:18:56 -080088 libhardware \
Yifan Hong67a47622016-11-17 13:02:06 -080089 libhidlbase \
90 libhidltransport \
Chia-I Wuaab99f52016-10-05 12:59:58 +080091 libhwbinder \
Andreas Gampe89fd4f72014-11-13 14:18:56 -080092 libutils \
93 libEGL \
94 libGLESv1_CM \
95 libGLESv2 \
96 libbinder \
97 libui \
98 libgui \
Jesse Hall8b0d55e2016-03-31 19:29:36 -070099 libpowermanager \
Irvelc274c632016-06-13 16:44:08 -0700100 libvulkan \
Chia-I Wucd8d7f02016-11-16 11:02:31 +0800101 libsync \
Colin Cross63549382016-10-26 12:52:53 -0700102 libprotobuf-cpp-lite \
Ruchi Kandoib5ee1782016-10-04 17:51:50 -0700103 libbase \
chaviw1d044282017-09-27 12:19:28 -0700104 android.hardware.power@1.0 \
105 liblayers_proto
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800106
Chia-I Wuaab99f52016-10-05 12:59:58 +0800107LOCAL_EXPORT_SHARED_LIBRARY_HEADERS := \
108 android.hardware.graphics.allocator@2.0 \
109 android.hardware.graphics.composer@2.1 \
Yifan Hong67a47622016-11-17 13:02:06 -0800110 libhidlbase \
111 libhidltransport \
Chia-I Wuaab99f52016-10-05 12:59:58 +0800112 libhwbinder
113
Dan Stoza2b6d38e2017-06-01 16:40:30 -0700114LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code -std=c++1z
Andreas Gampe89fd4f72014-11-13 14:18:56 -0800115
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800116include $(BUILD_SHARED_LIBRARY)
Keun young Park63f165f2012-08-31 10:53:36 -0700117
118###############################################################
Mathias Agopian7ffaa7c2013-07-22 12:20:28 -0700119# build surfaceflinger's executable
120include $(CLEAR_VARS)
121
Dan Stoza01049c82014-11-11 10:32:31 -0800122LOCAL_CLANG := true
Mathias Agopian4f4f0942013-08-19 17:26:18 -0700123
Dimitry Ivanovf06248f2016-08-01 14:13:37 -0700124LOCAL_LDFLAGS_32 := -Wl,--version-script,art/sigchainlib/version-script32.txt -Wl,--export-dynamic
125LOCAL_LDFLAGS_64 := -Wl,--version-script,art/sigchainlib/version-script64.txt -Wl,--export-dynamic
Dan Stoza01049c82014-11-11 10:32:31 -0800126LOCAL_CFLAGS := -DLOG_TAG=\"SurfaceFlinger\"
Dan Stoza01049c82014-11-11 10:32:31 -0800127
Tom Cherry74155992015-08-14 13:01:23 -0700128LOCAL_INIT_RC := surfaceflinger.rc
129
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000130ifeq ($(TARGET_USES_HWC2),true)
131 LOCAL_CFLAGS += -DUSE_HWC2
132endif
133
Dan Stoza01049c82014-11-11 10:32:31 -0800134LOCAL_SRC_FILES := \
Andreas Gampe89fd4f72014-11-13 14:18:56 -0800135 main_surfaceflinger.cpp
Mathias Agopian7ffaa7c2013-07-22 12:20:28 -0700136
137LOCAL_SHARED_LIBRARIES := \
Steven Moreland6ad20f72017-05-16 17:42:50 -0700138 android.frameworks.displayservice@1.0 \
Chia-I Wub2784042017-03-30 11:56:21 -0700139 android.hardware.configstore@1.0 \
140 android.hardware.configstore-utils \
141 android.hardware.graphics.allocator@2.0 \
Andreas Gampe89fd4f72014-11-13 14:18:56 -0800142 libsurfaceflinger \
143 libcutils \
Steven Moreland6ad20f72017-05-16 17:42:50 -0700144 libdisplayservicehidl \
Andreas Gampe89fd4f72014-11-13 14:18:56 -0800145 liblog \
146 libbinder \
Chia-I Wub2784042017-03-30 11:56:21 -0700147 libhidlbase \
148 libhidltransport \
Andreas Gampe89fd4f72014-11-13 14:18:56 -0800149 libutils \
Mathias Agopiana9347642017-02-13 16:42:28 -0800150 libui \
Pawin Vongmasa6e1193a2017-03-07 13:08:40 -0800151 libgui \
chaviw1d044282017-09-27 12:19:28 -0700152 libdl \
153 liblayers_proto
Mathias Agopian7ffaa7c2013-07-22 12:20:28 -0700154
Dmitriy Ivanov4340a142014-10-20 14:17:26 -0700155LOCAL_WHOLE_STATIC_LIBRARIES := libsigchain
Vishnu Nair35798872017-10-06 16:00:36 -0700156LOCAL_STATIC_LIBRARIES := libtrace_proto \
157 libserviceutils
Dmitriy Ivanov4340a142014-10-20 14:17:26 -0700158
Dan Stoza01049c82014-11-11 10:32:31 -0800159LOCAL_MODULE := surfaceflinger
Mathias Agopian7ffaa7c2013-07-22 12:20:28 -0700160
Colin Cross89450d42014-02-20 15:36:21 -0800161ifdef TARGET_32_BIT_SURFACEFLINGER
162LOCAL_32_BIT_ONLY := true
163endif
164
Andreas Gampe89fd4f72014-11-13 14:18:56 -0800165LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code
166
Mathias Agopian7ffaa7c2013-07-22 12:20:28 -0700167include $(BUILD_EXECUTABLE)
168
169###############################################################
Keun young Park63f165f2012-08-31 10:53:36 -0700170# uses jni which may not be available in PDK
171ifneq ($(wildcard libnativehelper/include),)
172include $(CLEAR_VARS)
Mathias Agopian1b3aeb42012-10-07 16:41:12 -0700173
Dan Stoza01049c82014-11-11 10:32:31 -0800174LOCAL_CLANG := true
175
176LOCAL_CFLAGS := -DLOG_TAG=\"SurfaceFlinger\"
Dan Stoza01049c82014-11-11 10:32:31 -0800177
178LOCAL_SRC_FILES := \
Keun young Park63f165f2012-08-31 10:53:36 -0700179 DdmConnection.cpp
180
181LOCAL_SHARED_LIBRARIES := \
Andreas Gampe89fd4f72014-11-13 14:18:56 -0800182 libcutils \
183 liblog \
184 libdl
Keun young Park63f165f2012-08-31 10:53:36 -0700185
Dan Stoza01049c82014-11-11 10:32:31 -0800186LOCAL_MODULE := libsurfaceflinger_ddmconnection
Keun young Park63f165f2012-08-31 10:53:36 -0700187
Andreas Gampe89fd4f72014-11-13 14:18:56 -0800188LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code
189
Keun young Park63f165f2012-08-31 10:53:36 -0700190include $(BUILD_SHARED_LIBRARY)
191endif # libnativehelper
Robert Carreb893992017-03-10 13:09:00 -0800192
193include $(call first-makefiles-under,$(LOCAL_PATH))