• 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_native_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    default_applicable_licenses: ["frameworks_native_license"],
8    default_team: "trendy_team_android_core_graphics_stack",
9}
10
11cc_library_headers {
12    name: "libbufferqueueconverter_headers",
13    vendor_available: true,
14    export_include_dirs: ["include"],
15}
16
17cc_library {
18    name: "libbufferqueueconverter",
19    vendor_available: true,
20    double_loadable: true,
21
22    srcs: [
23        ":libgui_frame_event_aidl",
24        "BufferQueueConverter.cpp",
25    ],
26
27    shared_libs: [
28        "libgui",
29        "libui",
30        "libutils",
31        "libbinder",
32        "libbase",
33        "liblog",
34    ],
35    static_libs: ["libguiflags"],
36    export_include_dirs: ["include"],
37    export_static_lib_headers: ["libguiflags"],
38}
39