blob: 16cf9206f404947eb8f68feb727678e9cd6f77da [file] [log] [blame]
Bob Badour56786ac2021-02-25 15:24:36 -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_av_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: ["frameworks_av_license"],
8}
9
Sungtak Leed79b6da2018-11-12 17:52:17 -080010cc_library {
11 name: "libstagefright_bufferpool@1.0",
12 vendor_available: true,
13 srcs: [
14 "Accessor.cpp",
15 "AccessorImpl.cpp",
16 "BufferPoolClient.cpp",
17 "BufferStatus.cpp",
18 "ClientManager.cpp",
19 "Connection.cpp",
20 ],
21 export_include_dirs: [
22 "include",
23 ],
24 shared_libs: [
25 "libcutils",
26 "libfmq",
27 "libhidlbase",
Sungtak Leed79b6da2018-11-12 17:52:17 -080028 "liblog",
29 "libutils",
30 "android.hardware.media.bufferpool@1.0",
31 ],
32 export_shared_lib_headers: [
33 "libfmq",
34 "android.hardware.media.bufferpool@1.0",
35 ],
36}