blob: cbb95f963c9857d2f9248727f7044c6fa7f0fe0c [file] [log] [blame]
Bob Badour3306e492021-02-25 15:35:37 -08001package {
2 // See: http://go/android-license-faq
3 // A large-scale-change added 'default_applicable_licenses' to import
4 // all of the 'license_kinds' from "frameworks_native_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: ["frameworks_native_license"],
8}
9
Lloyd Pique66ce40d2018-01-23 16:42:19 -080010cc_defaults {
11 name: "surfaceflinger_defaults",
12 cflags: [
Lloyd Pique66ce40d2018-01-23 16:42:19 -080013 "-Wall",
14 "-Werror",
Marin Shalamanovbed7fd32020-12-21 20:02:20 +010015 "-Wextra",
Lloyd Piqueea0a5fb2018-09-12 15:04:56 -070016 "-Wformat",
Lloyd Pique755e3192018-01-31 16:46:15 -080017 "-Wthread-safety",
Lloyd Pique66ce40d2018-01-23 16:42:19 -080018 "-Wunused",
19 "-Wunreachable-code",
Ady Abrahamb0dbdaa2020-01-06 16:19:42 -080020 "-Wconversion",
Lloyd Pique66ce40d2018-01-23 16:42:19 -080021 ],
Lloyd Pique66ce40d2018-01-23 16:42:19 -080022}
23
24cc_defaults {
25 name: "libsurfaceflinger_defaults",
John Reck67b1e2b2020-08-26 13:17:24 -070026 defaults: [
27 "surfaceflinger_defaults",
Leon Scroggins IIIe4169c82021-04-28 11:31:50 -040028 "skia_renderengine_deps",
John Reck67b1e2b2020-08-26 13:17:24 -070029 ],
Lloyd Pique66ce40d2018-01-23 16:42:19 -080030 cflags: [
Lloyd Pique70d91362018-10-18 16:02:55 -070031 "-DLOG_TAG=\"SurfaceFlinger\"",
Lloyd Pique66ce40d2018-01-23 16:42:19 -080032 "-DGL_GLEXT_PROTOTYPES",
33 "-DEGL_EGLEXT_PROTOTYPES",
34 ],
Lloyd Pique66ce40d2018-01-23 16:42:19 -080035 shared_libs: [
Lloyd Pique66ce40d2018-01-23 16:42:19 -080036 "android.hardware.configstore-utils",
37 "android.hardware.configstore@1.0",
Iris Chang7501ed62018-04-30 14:45:42 +080038 "android.hardware.configstore@1.1",
Lloyd Pique66ce40d2018-01-23 16:42:19 -080039 "android.hardware.graphics.allocator@2.0",
Marissa Wall925bf7f2018-12-29 14:27:11 -080040 "android.hardware.graphics.allocator@3.0",
Valerie Hau9758ae02018-10-09 16:05:09 -070041 "android.hardware.graphics.common@1.2",
Ady Abrahame7385f72021-09-05 00:54:25 -070042 "android.hardware.common-V2-ndk",
43 "android.hardware.common.fmq-V1-ndk",
Lloyd Pique66ce40d2018-01-23 16:42:19 -080044 "android.hardware.graphics.composer@2.1",
Courtney Goeltzenleuchterf9c98e52018-02-12 07:23:17 -070045 "android.hardware.graphics.composer@2.2",
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -070046 "android.hardware.graphics.composer@2.3",
Dominik Laskowski25a4e7d2019-09-20 14:50:10 -070047 "android.hardware.graphics.composer@2.4",
Ady Abrahame7385f72021-09-05 00:54:25 -070048 "android.hardware.graphics.composer3-V1-ndk",
Lloyd Pique66ce40d2018-01-23 16:42:19 -080049 "android.hardware.power@1.0",
Michael Wright5d22d4f2018-06-21 02:50:34 +010050 "android.hardware.power@1.3",
Matt Buckley06f299a2021-09-24 19:43:51 +000051 "android.hardware.power-V2-cpp",
Lloyd Pique66ce40d2018-01-23 16:42:19 -080052 "libbase",
53 "libbinder",
Ady Abrahame7385f72021-09-05 00:54:25 -070054 "libbinder_ndk",
Lloyd Pique66ce40d2018-01-23 16:42:19 -080055 "libcutils",
Lloyd Pique66ce40d2018-01-23 16:42:19 -080056 "libEGL",
57 "libfmq",
58 "libGLESv1_CM",
59 "libGLESv2",
60 "libgui",
Lloyd Pique66ce40d2018-01-23 16:42:19 -080061 "libhidlbase",
Lloyd Pique66ce40d2018-01-23 16:42:19 -080062 "liblayers_proto",
63 "liblog",
Inseob Kimd6e835b2019-02-14 12:33:30 +090064 "libnativewindow",
Suren Baghdasaryancd829052018-11-02 19:15:37 -070065 "libprocessgroup",
Lloyd Pique66ce40d2018-01-23 16:42:19 -080066 "libprotobuf-cpp-lite",
67 "libsync",
Yiwei Zhangd7927052020-01-13 16:05:01 -080068 "libtimestats",
Lloyd Pique66ce40d2018-01-23 16:42:19 -080069 "libui",
Robert Carr720e5062018-07-30 17:45:14 -070070 "libinput",
Lloyd Pique66ce40d2018-01-23 16:42:19 -080071 "libutils",
Inseob Kimd6e835b2019-02-14 12:33:30 +090072 "libSurfaceFlingerProp",
rnlee81d32602021-07-27 13:24:07 -070073 "server_configurable_flags",
Lloyd Pique66ce40d2018-01-23 16:42:19 -080074 ],
75 static_libs: [
Ady Abrahame7385f72021-09-05 00:54:25 -070076 "libaidlcommonsupport",
Lloyd Pique70d91362018-10-18 16:02:55 -070077 "libcompositionengine",
Adithya Srinivasanf279e042020-08-17 14:56:27 -070078 "libframetimeline",
Huihong Luo9e84f332021-12-16 14:33:46 -080079 "libgui_aidl_static",
Mikael Pessa2e1608f2019-07-19 11:25:35 -070080 "libperfetto_client_experimental",
Peiyong Lincbc184f2018-08-22 13:24:10 -070081 "librenderengine",
Dominik Laskowskif6b4ba62021-11-09 12:46:10 -080082 "libscheduler",
Lloyd Pique66ce40d2018-01-23 16:42:19 -080083 "libserviceutils",
Alec Mouri492c85c2021-11-19 15:58:10 -080084 "libshaders",
Alec Mouri465b2962021-10-08 16:22:21 -070085 "libtonemap",
Lloyd Pique66ce40d2018-01-23 16:42:19 -080086 "libtrace_proto",
Lloyd Pique66ce40d2018-01-23 16:42:19 -080087 ],
88 header_libs: [
89 "android.hardware.graphics.composer@2.1-command-buffer",
Courtney Goeltzenleuchterf9c98e52018-02-12 07:23:17 -070090 "android.hardware.graphics.composer@2.2-command-buffer",
Peiyong Lin698147a2018-09-14 13:27:18 -070091 "android.hardware.graphics.composer@2.3-command-buffer",
Peiyong Linafa0f572020-01-13 16:35:02 -080092 "android.hardware.graphics.composer@2.4-command-buffer",
Ady Abrahame7385f72021-09-05 00:54:25 -070093 "android.hardware.graphics.composer3-command-buffer",
Lloyd Pique66ce40d2018-01-23 16:42:19 -080094 ],
95 export_static_lib_headers: [
Lloyd Pique70d91362018-10-18 16:02:55 -070096 "libcompositionengine",
Peiyong Lincbc184f2018-08-22 13:24:10 -070097 "librenderengine",
Lloyd Pique66ce40d2018-01-23 16:42:19 -080098 "libserviceutils",
99 ],
100 export_shared_lib_headers: [
101 "android.hardware.graphics.allocator@2.0",
Marissa Wall925bf7f2018-12-29 14:27:11 -0800102 "android.hardware.graphics.allocator@3.0",
Valerie Hau9758ae02018-10-09 16:05:09 -0700103 "android.hardware.graphics.common@1.2",
Lloyd Pique66ce40d2018-01-23 16:42:19 -0800104 "android.hardware.graphics.composer@2.1",
Courtney Goeltzenleuchterf9c98e52018-02-12 07:23:17 -0700105 "android.hardware.graphics.composer@2.2",
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -0700106 "android.hardware.graphics.composer@2.3",
Dominik Laskowski25a4e7d2019-09-20 14:50:10 -0700107 "android.hardware.graphics.composer@2.4",
Ady Abrahame7385f72021-09-05 00:54:25 -0700108 "android.hardware.graphics.composer3-V1-ndk",
Michael Wright5d22d4f2018-06-21 02:50:34 +0100109 "android.hardware.power@1.3",
Lloyd Pique66ce40d2018-01-23 16:42:19 -0800110 "libhidlbase",
Yiwei Zhangd7927052020-01-13 16:05:01 -0800111 "libtimestats",
Lloyd Pique66ce40d2018-01-23 16:42:19 -0800112 ],
Marissa Wall48586522019-11-19 14:01:36 -0800113 // TODO (marissaw): this library is not used by surfaceflinger. This is here so
114 // the library compiled in a way that is accessible to system partition when running
115 // IMapper's VTS.
Vishnu Nair6b591152021-10-08 11:45:14 -0700116 required: ["libgralloctypes"],
Lloyd Pique66ce40d2018-01-23 16:42:19 -0800117}
118
Lloyd Piqueea0a5fb2018-09-12 15:04:56 -0700119cc_defaults {
120 name: "libsurfaceflinger_production_defaults",
121 defaults: ["libsurfaceflinger_defaults"],
Lloyd Piqueea0a5fb2018-09-12 15:04:56 -0700122 lto: {
123 thin: true,
124 },
Yi Kongbf2aa782020-09-21 01:25:16 +0800125 whole_program_vtables: true, // Requires ThinLTO
Yi Kong5cb3bb62022-01-06 16:01:18 +0800126 afdo: true,
Mitch Phillips21499ce2022-03-02 01:25:22 +0000127 // TODO(b/131771163): Fix broken fuzzer support with LTO.
128 sanitize: {
129 fuzzer: false,
130 },
Lloyd Piqueea0a5fb2018-09-12 15:04:56 -0700131}
132
Lloyd Pique66ce40d2018-01-23 16:42:19 -0800133cc_library_headers {
134 name: "libsurfaceflinger_headers",
Alex Vakulenko06a76342017-02-01 22:25:44 -0800135 export_include_dirs: ["."],
Logan Chien3ac6c962018-02-27 16:46:00 +0800136 static_libs: ["libserviceutils"],
137 export_static_lib_headers: ["libserviceutils"],
Alex Vakulenko06a76342017-02-01 22:25:44 -0800138}
Kalle Raitaa099a242017-01-11 11:17:29 -0800139
Lloyd Pique66ce40d2018-01-23 16:42:19 -0800140filegroup {
141 name: "libsurfaceflinger_sources",
142 srcs: [
Vishnu Nair34eb9ca2021-11-18 15:23:23 -0800143 "BackgroundExecutor.cpp",
Lloyd Pique66ce40d2018-01-23 16:42:19 -0800144 "BufferLayer.cpp",
145 "BufferLayerConsumer.cpp",
Marissa Wallfd668622018-05-10 10:21:13 -0700146 "BufferQueueLayer.cpp",
Marissa Wall61c58622018-07-18 10:12:20 -0700147 "BufferStateLayer.cpp",
Marissa Wall947d34e2019-03-29 14:03:53 -0700148 "ClientCache.cpp",
Lloyd Pique66ce40d2018-01-23 16:42:19 -0800149 "Client.cpp",
Vishnu Nairfa247b12020-02-11 08:58:26 -0800150 "EffectLayer.cpp",
Robert Carrcdf83202018-03-07 12:48:34 -0800151 "ContainerLayer.cpp",
Lloyd Pique66ce40d2018-01-23 16:42:19 -0800152 "DisplayDevice.cpp",
Ady Abrahame7385f72021-09-05 00:54:25 -0700153 "DisplayHardware/AidlComposerHal.cpp",
Ady Abraham9fc28052021-10-14 17:21:38 -0700154 "DisplayHardware/HidlComposerHal.cpp",
Lloyd Pique66ce40d2018-01-23 16:42:19 -0800155 "DisplayHardware/ComposerHal.cpp",
156 "DisplayHardware/FramebufferSurface.cpp",
157 "DisplayHardware/HWC2.cpp",
158 "DisplayHardware/HWComposer.cpp",
Michael Wright5d22d4f2018-06-21 02:50:34 +0100159 "DisplayHardware/PowerAdvisor.cpp",
Lloyd Pique66ce40d2018-01-23 16:42:19 -0800160 "DisplayHardware/VirtualDisplaySurface.cpp",
Marin Shalamanovf6b5d182020-06-12 02:08:51 +0200161 "DisplayRenderArea.cpp",
Lloyd Pique66ce40d2018-01-23 16:42:19 -0800162 "Effects/Daltonizer.cpp",
Lloyd Pique66ce40d2018-01-23 16:42:19 -0800163 "EventLog/EventLog.cpp",
rnlee81d32602021-07-27 13:24:07 -0700164 "FlagManager.cpp",
Alec Mouriadebf5c2021-01-05 12:57:36 -0800165 "FpsReporter.cpp",
Mikael Pessa90092f42019-08-26 17:22:04 -0700166 "FrameTracer/FrameTracer.cpp",
Lloyd Pique66ce40d2018-01-23 16:42:19 -0800167 "FrameTracker.cpp",
John Reck88270902021-03-18 11:27:35 -0400168 "HdrLayerInfoReporter.cpp",
chaviw60c9d3e2021-06-04 12:52:17 -0500169 "WindowInfosListenerInvoker.cpp",
Lloyd Pique66ce40d2018-01-23 16:42:19 -0800170 "Layer.cpp",
171 "LayerProtoHelper.cpp",
172 "LayerRejecter.cpp",
Marin Shalamanovf6b5d182020-06-12 02:08:51 +0200173 "LayerRenderArea.cpp",
Lloyd Pique66ce40d2018-01-23 16:42:19 -0800174 "LayerVector.cpp",
Lloyd Pique66ce40d2018-01-23 16:42:19 -0800175 "MonitoredProducer.cpp",
Lloyd Pique22098362018-09-13 11:46:49 -0700176 "NativeWindowSurface.cpp",
Ady Abraham03b02dd2019-03-21 15:40:11 -0700177 "RefreshRateOverlay.cpp",
Dan Stozaec460082018-12-17 15:35:09 -0800178 "RegionSamplingThread.cpp",
Ady Abraham03b02dd2019-03-21 15:40:11 -0700179 "RenderArea.cpp",
Ana Krulec241cf832018-08-10 15:03:23 -0700180 "Scheduler/DispSyncSource.cpp",
Ana Krulecfefcb582018-08-07 14:22:37 -0700181 "Scheduler/EventThread.cpp",
Andy Yu2ae6b6b2021-11-18 14:51:06 -0800182 "Scheduler/FrameRateOverrideMappings.cpp",
Ana Krulecf2c006d2019-06-21 15:37:07 -0700183 "Scheduler/OneShotTimer.cpp",
Marin Shalamanov1bc43ee2020-11-20 16:56:52 +0100184 "Scheduler/LayerHistory.cpp",
185 "Scheduler/LayerInfo.cpp",
Ana Krulecfefcb582018-08-07 14:22:37 -0700186 "Scheduler/MessageQueue.cpp",
Ady Abrahamb4b1e0a2019-11-20 18:25:35 -0800187 "Scheduler/RefreshRateConfigs.cpp",
Ana Krulec98b5b242018-08-10 15:03:23 -0700188 "Scheduler/Scheduler.cpp",
Kevin DuBois1678e2c2019-08-22 12:26:24 -0700189 "Scheduler/VSyncDispatchTimerQueue.cpp",
190 "Scheduler/VSyncPredictor.cpp",
Kevin DuBoisb2501ba2019-11-12 14:20:29 -0800191 "Scheduler/VSyncReactor.cpp",
Ady Abrahamc581d3c2020-08-06 17:34:27 -0700192 "Scheduler/VsyncConfiguration.cpp",
Dominik Laskowski068173d2021-08-11 17:22:59 -0700193 "Scheduler/VsyncModulator.cpp",
194 "Scheduler/VsyncSchedule.cpp",
Lloyd Pique66ce40d2018-01-23 16:42:19 -0800195 "StartPropertySetThread.cpp",
196 "SurfaceFlinger.cpp",
Lloyd Pique24f3bfe2019-10-02 19:29:10 -0700197 "SurfaceFlingerDefaultFactory.cpp",
Lloyd Pique66ce40d2018-01-23 16:42:19 -0800198 "SurfaceInterceptor.cpp",
Vishnu Nair00b90132021-11-05 14:03:40 -0700199 "Tracing/LayerTracing.cpp",
Vishnu Nair7891e962021-11-11 12:07:21 -0800200 "Tracing/TransactionTracing.cpp",
Vishnu Nair6b591152021-10-08 11:45:14 -0700201 "Tracing/TransactionProtoParser.cpp",
Robert Carr9a803c32021-01-14 16:57:58 -0800202 "TransactionCallbackInvoker.cpp",
Galia Peycheva8f04b302021-04-27 13:25:38 +0200203 "TunnelModeEnabledReporter.cpp",
Lloyd Pique66ce40d2018-01-23 16:42:19 -0800204 ],
205}
206
John Reck8b1ae3f2020-09-10 17:01:09 +0000207cc_defaults {
208 name: "libsurfaceflinger_binary",
209 defaults: [
210 "surfaceflinger_defaults",
211 "libsurfaceflinger_production_defaults",
Lloyd Pique66ce40d2018-01-23 16:42:19 -0800212 ],
mamik94e91f62019-08-19 09:11:33 -0700213 cflags: [
John Reck8b1ae3f2020-09-10 17:01:09 +0000214 "-DLOG_TAG=\"SurfaceFlinger\"",
mamik94e91f62019-08-19 09:11:33 -0700215 ],
Lloyd Pique66ce40d2018-01-23 16:42:19 -0800216 shared_libs: [
217 "android.frameworks.displayservice@1.0",
218 "android.hardware.configstore-utils",
219 "android.hardware.configstore@1.0",
220 "android.hardware.graphics.allocator@2.0",
Marissa Wall925bf7f2018-12-29 14:27:11 -0800221 "android.hardware.graphics.allocator@3.0",
Lloyd Pique66ce40d2018-01-23 16:42:19 -0800222 "libbinder",
223 "libcutils",
224 "libdisplayservicehidl",
225 "libhidlbase",
Lloyd Pique66ce40d2018-01-23 16:42:19 -0800226 "liblog",
Suren Baghdasaryancd829052018-11-02 19:15:37 -0700227 "libprocessgroup",
Alec Mouri0a9c7b82018-11-16 13:05:25 -0800228 "libsync",
Lloyd Pique66ce40d2018-01-23 16:42:19 -0800229 "libutils",
230 ],
231 static_libs: [
232 "libserviceutils",
233 "libtrace_proto",
234 ],
Lloyd Piqueea0a5fb2018-09-12 15:04:56 -0700235}
Lloyd Pique66ce40d2018-01-23 16:42:19 -0800236
Lloyd Piqueea0a5fb2018-09-12 15:04:56 -0700237filegroup {
238 name: "surfaceflinger_binary_sources",
John Reck8b1ae3f2020-09-10 17:01:09 +0000239 srcs: [
240 ":libsurfaceflinger_sources",
Lloyd Piqued777be42020-09-11 15:38:53 -0700241 "main_surfaceflinger.cpp",
John Reck8b1ae3f2020-09-10 17:01:09 +0000242 ],
Lloyd Piqueea0a5fb2018-09-12 15:04:56 -0700243}
244
245cc_binary {
246 name: "surfaceflinger",
247 defaults: ["libsurfaceflinger_binary"],
248 init_rc: ["surfaceflinger.rc"],
Lloyd Piqued777be42020-09-11 15:38:53 -0700249 srcs: [
250 ":surfaceflinger_binary_sources",
251 // Note: SurfaceFlingerFactory is not in the filegroup so that it
252 // can be easily replaced.
253 "SurfaceFlingerFactory.cpp",
254 ],
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900255 shared_libs: [
Inseob Kimd6e835b2019-02-14 12:33:30 +0900256 "libSurfaceFlingerProp",
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900257 ],
Alec Mouri0a9bc472020-09-10 18:03:43 -0700258
Vishnu Nair6b591152021-10-08 11:45:14 -0700259 logtags: ["EventLog/EventLogTags.logtags"],
Lloyd Pique66ce40d2018-01-23 16:42:19 -0800260}
261
Lloyd Pique66ce40d2018-01-23 16:42:19 -0800262subdirs = [
263 "layerproto",
264 "tests",
265]
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900266
267cc_library_shared {
Inseob Kimd6e835b2019-02-14 12:33:30 +0900268 name: "libSurfaceFlingerProp",
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900269 srcs: [
270 "SurfaceFlingerProperties.cpp",
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900271 ],
272 shared_libs: [
273 "android.hardware.configstore-utils",
274 "android.hardware.configstore@1.0",
275 "android.hardware.configstore@1.1",
Sundong Ahncb20cca2019-02-22 11:57:38 +0900276 "android.hardware.graphics.common@1.2",
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900277 "libhidlbase",
Sundong Ahncb20cca2019-02-22 11:57:38 +0900278 "libui",
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900279 "libutils",
Inseob Kimd6e835b2019-02-14 12:33:30 +0900280 "liblog",
281 ],
282 static_libs: [
Trevor Radcliffeba8800d2022-07-08 17:58:06 +0000283 "libSurfaceFlingerProperties",
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900284 ],
285 export_shared_lib_headers: [
Sundong Ahncb20cca2019-02-22 11:57:38 +0900286 "android.hardware.graphics.common@1.2",
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900287 "libhidlbase",
Sundong Ahn204fb1f2020-04-23 21:56:36 +0900288 "libui",
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900289 ],
Inseob Kimd6e835b2019-02-14 12:33:30 +0900290 export_static_lib_headers: [
Trevor Radcliffeba8800d2022-07-08 17:58:06 +0000291 "libSurfaceFlingerProperties",
Inseob Kimd6e835b2019-02-14 12:33:30 +0900292 ],
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900293}