• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
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
10cc_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",
28        "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}
37