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        "libbase",
32        "libcodec2",
33        "libcutils",
34        "libprocessgroup",
35        "libsfplugin_ccodec_utils",
36        "libsync",
37        "libui",
38        "libutils",
39    ],
40
41    static_libs: [
42        "librenderfright",
43    ],
44
45    cflags: [
46        "-Werror",
47        "-Wall",
48    ],
49}
50
51cc_library {
52    name: "sample-codec2-hidl-plugin",
53    vendor: true,
54
55    defaults: [
56        "sample-codec2-hidl-plugin-defaults",
57    ],
58}
59