blob: 196161b3e22dd72a5541877f5bd18d4d12f5ca3a [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
Changyeon Joab614c42020-02-03 16:34:50 -080011cc_library_headers {
12 name: "libbufferqueueconverter_headers",
13 vendor_available: true,
14 export_include_dirs: ["include"],
15}
16
Changyeon Jo782d8a72023-04-02 16:03:31 -070017cc_library {
Changyeon Joab614c42020-02-03 16:34:50 -080018 name: "libbufferqueueconverter",
19 vendor_available: true,
Changyeon Joab614c42020-02-03 16:34:50 -080020 double_loadable: true,
21
22 srcs: [
Huihong Luo0a81aa32022-02-22 16:02:36 -080023 ":libgui_frame_event_aidl",
Changyeon Joab614c42020-02-03 16:34:50 -080024 "BufferQueueConverter.cpp",
25 ],
26
27 shared_libs: [
28 "libgui",
29 "libui",
30 "libutils",
31 "libbinder",
32 "libbase",
33 "liblog",
34 ],
Ady Abraham107788e2023-10-17 12:31:08 -070035 static_libs: ["libguiflags"],
Changyeon Joab614c42020-02-03 16:34:50 -080036 export_include_dirs: ["include"],
Ady Abraham107788e2023-10-17 12:31:08 -070037 export_static_lib_headers: ["libguiflags"],
Changyeon Joab614c42020-02-03 16:34:50 -080038}