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_defaults {
11    name: "sample-codec2-hidl-plugin-defaults",
12
13    srcs: [
14        "SampleFilterPlugin.cpp",
15    ],
16
17    defaults: [
18        "libcodec2-impl-defaults",
19    ],
20
21    header_libs: [
22        "libcodec2_hidl_plugin_headers",
23        "libgui_headers",
24    ],
25
26    shared_libs: [
27        "libEGL",
28        "libGLESv1_CM",
29        "libGLESv2",
30        "libGLESv3",
31        "libvulkan",
32        "libbase",
33        "libcodec2",
34        "libcutils",
35        "libprocessgroup",
36        "libsfplugin_ccodec_utils",
37        "libsync",
38        "libui",
39        "libutils",
40    ],
41
42    static_libs: [
43        "librenderfright",
44    ],
45
46    cflags: [
47        "-Werror",
48        "-Wall",
49    ],
50}
51
52cc_library {
53    name: "sample-codec2-hidl-plugin",
54    vendor: true,
55
56    defaults: [
57        "sample-codec2-hidl-plugin-defaults",
58    ],
59}
60