blob: f2ff00b842b8f2129e0d5e8f59b9925141f1b1c2 [file] [log] [blame]
Alec Mouri9b133ca2023-11-14 19:00:01 +00001package {
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"],
John Reck38bc8a82024-02-21 17:08:27 -05008 default_team: "trendy_team_android_core_graphics_stack",
Alec Mouri9b133ca2023-11-14 19:00:01 +00009}
10
11cc_defaults {
12 name: "libsurfaceflinger_common_defaults",
13 defaults: [
14 "android.hardware.graphics.composer3-ndk_shared",
15 "surfaceflinger_defaults",
16 ],
17 shared_libs: [
18 "libSurfaceFlingerProp",
19 "server_configurable_flags",
20 ],
21 static_libs: [
Leon Scroggins III10c62932024-02-01 15:35:19 -050022 "librenderengine_includes",
Alec Mouri9b133ca2023-11-14 19:00:01 +000023 ],
24 srcs: [
25 "FlagManager.cpp",
26 ],
27 local_include_dirs: ["include"],
28 export_include_dirs: ["include"],
29}
30
31cc_library_static {
32 name: "libsurfaceflinger_common",
33 defaults: [
34 "libsurfaceflinger_common_defaults",
35 ],
36 static_libs: [
37 "libsurfaceflingerflags",
38 ],
39}
40
41cc_library_static {
42 name: "libsurfaceflinger_common_test",
43 defaults: [
44 "libsurfaceflinger_common_defaults",
45 ],
46 static_libs: [
47 "libsurfaceflingerflags_test",
48 ],
49}