blob: 5f145a149d0a4c067864cad0200aee9aa846e5c5 [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
16cc_library_shared {
17 name: "libbufferqueueconverter",
18 vendor_available: true,
19 vndk: {
20 enabled: true,
21 },
22 double_loadable: true,
23
24 srcs: [
Huihong Luo0a81aa32022-02-22 16:02:36 -080025 ":libgui_frame_event_aidl",
Changyeon Joab614c42020-02-03 16:34:50 -080026 "BufferQueueConverter.cpp",
27 ],
28
29 shared_libs: [
30 "libgui",
31 "libui",
32 "libutils",
33 "libbinder",
34 "libbase",
35 "liblog",
36 ],
37 export_include_dirs: ["include"],
38}