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 "hardware_google_graphics_gs101_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    default_applicable_licenses: ["hardware_google_graphics_gs101_license"],
8}
9
10cc_library {
11    name: "libacryl_hdr_plugin",
12    proprietary: true,
13    include_dirs: [
14        "hardware/google/graphics/gs101/include",
15        "hardware/google/graphics/common/include"
16    ],
17    srcs: ["libacryl_hdr_plugin.cpp"],
18    shared_libs: ["liblog", "android.hardware.graphics.common@1.2"],
19    header_libs: ["google_libacryl_hdrplugin_headers", "libsystem_headers"],
20    cflags: ["-Werror"],
21}
22