blob: 1f4427a11a51d7c0046786a24564c836ae8aa49b [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 \
Mathias Agopian875d8e12013-06-07 15:35:48 -070042
Irvelc274c632016-06-13 16:44:08 -070043LOCAL_MODULE := libsurfaceflinger
Jesse Hall8b0d55e2016-03-31 19:29:36 -070044LOCAL_C_INCLUDES := \
Irvelc274c632016-06-13 16:44:08 -070045 frameworks/native/vulkan/include \
46 external/vulkan-validation-layers/libs/vkjson \
Chia-I Wucd8d7f02016-11-16 11:02:31 +080047 system/libhwbinder/fast_msgq/include \
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080048
Dan Stoza01049c82014-11-11 10:32:31 -080049LOCAL_CFLAGS := -DLOG_TAG=\"SurfaceFlinger\"
Mathias Agopian076b1cc2009-04-10 14:24:30 -070050LOCAL_CFLAGS += -DGL_GLEXT_PROTOTYPES -DEGL_EGLEXT_PROTOTYPES
Dan Stoza9e56aa02015-11-02 13:00:03 -080051
Fabien Sanglard9d96de42016-10-11 00:15:18 +000052ifeq ($(TARGET_USES_HWC2),true)
53 LOCAL_CFLAGS += -DUSE_HWC2
54 LOCAL_SRC_FILES += \
55 SurfaceFlinger.cpp \
56 DisplayHardware/HWComposer.cpp
57else
58 LOCAL_SRC_FILES += \
59 SurfaceFlinger_hwc1.cpp \
60 DisplayHardware/HWComposer_hwc1.cpp
61endif
62
Michael Lentine7306c672014-07-30 13:00:37 -070063LOCAL_CFLAGS += -fvisibility=hidden -Werror=format
Mathias Agopianb6df7d02013-05-09 14:53:35 -070064
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -080065LOCAL_STATIC_LIBRARIES := \
66 libhwcomposer-command-buffer \
67 libtrace_proto \
68 libvkjson \
69 libvr_manager \
Vishnu Nair91a86772017-10-06 21:31:25 +000070 libvrflinger
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -080071
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080072LOCAL_SHARED_LIBRARIES := \
Daniel Nicoara95a99a12017-03-21 15:30:45 -040073 android.frameworks.vr.composer@1.0 \
Chia-I Wuaab99f52016-10-05 12:59:58 +080074 android.hardware.graphics.allocator@2.0 \
75 android.hardware.graphics.composer@2.1 \
Jiyong Park4b20c2e2017-01-14 19:45:11 +090076 android.hardware.configstore@1.0 \
Jaesoo Lee585e32f2017-03-30 15:25:19 +090077 android.hardware.configstore-utils \
Andreas Gampe89fd4f72014-11-13 14:18:56 -080078 libcutils \
79 liblog \
80 libdl \
Chia-I Wucd8d7f02016-11-16 11:02:31 +080081 libfmq \
Andreas Gampe89fd4f72014-11-13 14:18:56 -080082 libhardware \
Yifan Hong67a47622016-11-17 13:02:06 -080083 libhidlbase \
84 libhidltransport \
Chia-I Wuaab99f52016-10-05 12:59:58 +080085 libhwbinder \
Andreas Gampe89fd4f72014-11-13 14:18:56 -080086 libutils \
87 libEGL \
88 libGLESv1_CM \
89 libGLESv2 \
90 libbinder \
91 libui \
92 libgui \
Jesse Hall8b0d55e2016-03-31 19:29:36 -070093 libpowermanager \
Irvelc274c632016-06-13 16:44:08 -070094 libvulkan \
Chia-I Wucd8d7f02016-11-16 11:02:31 +080095 libsync \
Colin Cross63549382016-10-26 12:52:53 -070096 libprotobuf-cpp-lite \
Ruchi Kandoib5ee1782016-10-04 17:51:50 -070097 libbase \
Ruchi Kandoib5ee1782016-10-04 17:51:50 -070098 android.hardware.power@1.0
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080099
Chia-I Wuaab99f52016-10-05 12:59:58 +0800100LOCAL_EXPORT_SHARED_LIBRARY_HEADERS := \
101 android.hardware.graphics.allocator@2.0 \
102 android.hardware.graphics.composer@2.1 \
Yifan Hong67a47622016-11-17 13:02:06 -0800103 libhidlbase \
104 libhidltransport \
Chia-I Wuaab99f52016-10-05 12:59:58 +0800105 libhwbinder
106
Dan Stoza2b6d38e2017-06-01 16:40:30 -0700107LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code -std=c++1z
Andreas Gampe89fd4f72014-11-13 14:18:56 -0800108
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800109include $(BUILD_SHARED_LIBRARY)
Keun young Park63f165f2012-08-31 10:53:36 -0700110
111###############################################################
Mathias Agopian7ffaa7c2013-07-22 12:20:28 -0700112# build surfaceflinger's executable
113include $(CLEAR_VARS)
114
Dan Stoza01049c82014-11-11 10:32:31 -0800115LOCAL_CLANG := true
Mathias Agopian4f4f0942013-08-19 17:26:18 -0700116
Dimitry Ivanovf06248f2016-08-01 14:13:37 -0700117LOCAL_LDFLAGS_32 := -Wl,--version-script,art/sigchainlib/version-script32.txt -Wl,--export-dynamic
118LOCAL_LDFLAGS_64 := -Wl,--version-script,art/sigchainlib/version-script64.txt -Wl,--export-dynamic
Dan Stoza01049c82014-11-11 10:32:31 -0800119LOCAL_CFLAGS := -DLOG_TAG=\"SurfaceFlinger\"
Dan Stoza01049c82014-11-11 10:32:31 -0800120
Tom Cherry74155992015-08-14 13:01:23 -0700121LOCAL_INIT_RC := surfaceflinger.rc
122
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000123ifeq ($(TARGET_USES_HWC2),true)
124 LOCAL_CFLAGS += -DUSE_HWC2
125endif
126
Dan Stoza01049c82014-11-11 10:32:31 -0800127LOCAL_SRC_FILES := \
Andreas Gampe89fd4f72014-11-13 14:18:56 -0800128 main_surfaceflinger.cpp
Mathias Agopian7ffaa7c2013-07-22 12:20:28 -0700129
130LOCAL_SHARED_LIBRARIES := \
Steven Moreland6ad20f72017-05-16 17:42:50 -0700131 android.frameworks.displayservice@1.0 \
Chia-I Wub2784042017-03-30 11:56:21 -0700132 android.hardware.configstore@1.0 \
133 android.hardware.configstore-utils \
134 android.hardware.graphics.allocator@2.0 \
Andreas Gampe89fd4f72014-11-13 14:18:56 -0800135 libsurfaceflinger \
136 libcutils \
Steven Moreland6ad20f72017-05-16 17:42:50 -0700137 libdisplayservicehidl \
Andreas Gampe89fd4f72014-11-13 14:18:56 -0800138 liblog \
139 libbinder \
Chia-I Wub2784042017-03-30 11:56:21 -0700140 libhidlbase \
141 libhidltransport \
Andreas Gampe89fd4f72014-11-13 14:18:56 -0800142 libutils \
Mathias Agopiana9347642017-02-13 16:42:28 -0800143 libui \
Pawin Vongmasa6e1193a2017-03-07 13:08:40 -0800144 libgui \
Andreas Gampe89fd4f72014-11-13 14:18:56 -0800145 libdl
Mathias Agopian7ffaa7c2013-07-22 12:20:28 -0700146
Dmitriy Ivanov4340a142014-10-20 14:17:26 -0700147LOCAL_WHOLE_STATIC_LIBRARIES := libsigchain
Vishnu Nair91a86772017-10-06 21:31:25 +0000148LOCAL_STATIC_LIBRARIES := libtrace_proto
Dmitriy Ivanov4340a142014-10-20 14:17:26 -0700149
Dan Stoza01049c82014-11-11 10:32:31 -0800150LOCAL_MODULE := surfaceflinger
Mathias Agopian7ffaa7c2013-07-22 12:20:28 -0700151
Colin Cross89450d42014-02-20 15:36:21 -0800152ifdef TARGET_32_BIT_SURFACEFLINGER
153LOCAL_32_BIT_ONLY := true
154endif
155
Andreas Gampe89fd4f72014-11-13 14:18:56 -0800156LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code
157
Mathias Agopian7ffaa7c2013-07-22 12:20:28 -0700158include $(BUILD_EXECUTABLE)
159
160###############################################################
Keun young Park63f165f2012-08-31 10:53:36 -0700161# uses jni which may not be available in PDK
162ifneq ($(wildcard libnativehelper/include),)
163include $(CLEAR_VARS)
Mathias Agopian1b3aeb42012-10-07 16:41:12 -0700164
Dan Stoza01049c82014-11-11 10:32:31 -0800165LOCAL_CLANG := true
166
167LOCAL_CFLAGS := -DLOG_TAG=\"SurfaceFlinger\"
Dan Stoza01049c82014-11-11 10:32:31 -0800168
169LOCAL_SRC_FILES := \
Keun young Park63f165f2012-08-31 10:53:36 -0700170 DdmConnection.cpp
171
172LOCAL_SHARED_LIBRARIES := \
Andreas Gampe89fd4f72014-11-13 14:18:56 -0800173 libcutils \
174 liblog \
175 libdl
Keun young Park63f165f2012-08-31 10:53:36 -0700176
Dan Stoza01049c82014-11-11 10:32:31 -0800177LOCAL_MODULE := libsurfaceflinger_ddmconnection
Keun young Park63f165f2012-08-31 10:53:36 -0700178
Andreas Gampe89fd4f72014-11-13 14:18:56 -0800179LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code
180
Keun young Park63f165f2012-08-31 10:53:36 -0700181include $(BUILD_SHARED_LIBRARY)
182endif # libnativehelper
Robert Carreb893992017-03-10 13:09:00 -0800183
184include $(call first-makefiles-under,$(LOCAL_PATH))