blob: 0a69a72c1d1b8f0162afebda791532ebb5a7294d [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"],
John Reck38bc8a82024-02-21 17:08:27 -05008 default_team: "trendy_team_android_core_graphics_stack",
Bob Badour3306e492021-02-25 15:35:37 -08009}
10
Vishnu Nair6aac09e2024-07-26 21:38:58 +000011cc_defaults {
12 name: "libsurfaceflinger_proto_deps",
chaviw1d044282017-09-27 12:19:28 -070013 export_include_dirs: ["include"],
Kean Mariotti4ba343c2023-04-19 13:31:02 +000014 static_libs: [
15 "libperfetto_client_experimental",
16 ],
17
18 whole_static_libs: [
19 // TODO(b/169779783): move into "static_libs" when the soong issue is fixed
20 "perfetto_trace_protos",
21 ],
22
23 export_static_lib_headers: [
24 "libperfetto_client_experimental",
25 "perfetto_trace_protos",
chaviw1d044282017-09-27 12:19:28 -070026 ],
27
28 shared_libs: [
chaviw1d044282017-09-27 12:19:28 -070029 "libprotobuf-cpp-lite",
chaviw1d044282017-09-27 12:19:28 -070030 ],
31
Vishnu Nair6aac09e2024-07-26 21:38:58 +000032 header_libs: [
33 "libsurfaceflinger_proto_headers",
chaviw1d044282017-09-27 12:19:28 -070034 ],
Vishnu Nair3242d5f2020-10-06 10:48:32 -070035}
Vishnu Nair6aac09e2024-07-26 21:38:58 +000036
37cc_library_headers {
38 name: "libsurfaceflinger_proto_headers",
39 export_include_dirs: ["include"],
40}