blob: 2c25f746a8f8c0d5965764f397480e163bf57c4d [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
Changyeon Joab614c42020-02-03 16:34:50 -080010cc_library_headers {
11 name: "libbufferqueueconverter_headers",
12 vendor_available: true,
13 export_include_dirs: ["include"],
14}
15
Changyeon Jo782d8a72023-04-02 16:03:31 -070016cc_library {
Changyeon Joab614c42020-02-03 16:34:50 -080017 name: "libbufferqueueconverter",
18 vendor_available: true,
Changyeon Joab614c42020-02-03 16:34:50 -080019 double_loadable: true,
20
21 srcs: [
Huihong Luo0a81aa32022-02-22 16:02:36 -080022 ":libgui_frame_event_aidl",
Changyeon Joab614c42020-02-03 16:34:50 -080023 "BufferQueueConverter.cpp",
24 ],
25
26 shared_libs: [
27 "libgui",
28 "libui",
29 "libutils",
30 "libbinder",
31 "libbase",
32 "liblog",
33 ],
Ady Abraham107788e2023-10-17 12:31:08 -070034 static_libs: ["libguiflags"],
Changyeon Joab614c42020-02-03 16:34:50 -080035 export_include_dirs: ["include"],
Ady Abraham107788e2023-10-17 12:31:08 -070036 export_static_lib_headers: ["libguiflags"],
Changyeon Joab614c42020-02-03 16:34:50 -080037}