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}
9
10cc_library_static {
11    name: "libvr_hwc-binder",
12    srcs: [
13        "android/dvr/IVrComposer.aidl",
14        "android/dvr/IVrComposerCallback.aidl",
15        "android/dvr/parcelable_composer_frame.cpp",
16        "android/dvr/parcelable_composer_layer.cpp",
17        "android/dvr/parcelable_unique_fd.cpp",
18    ],
19    aidl: {
20        local_include_dirs: ["."],
21        export_aidl_headers: true,
22    },
23    export_include_dirs: ["."],
24
25    cflags: [
26        "-Wall",
27        "-Werror",
28    ],
29
30    shared_libs: [
31        "libbinder",
32        "libui",
33        "libutils",
34        "libvr_hwc-hal",
35    ],
36}
37