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 "device_generic_goldfish-opengl_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-BSD
7    default_applicable_licenses: ["device_generic_goldfish-opengl_license"],
8}
9
10cc_binary {
11    name: "[email protected]",
12
13    defaults: [
14        "hidl_defaults",
15        "libcodec2-hidl-defaults",
16    ],
17    vendor: true,
18    relative_install_path: "hw",
19
20    srcs: [
21        "service.cpp",
22    ],
23
24    init_rc: ["[email protected]"],
25    vintf_fragments: ["[email protected]"],
26
27    shared_libs: [
28        "libgoldfish_codec2_store",
29        "libavservices_minijail",
30        "libcutils",
31        "libhidlbase",
32        "liblog",
33        "libutils",
34    ],
35
36    required: ["android.hardware.media.c2-default-seccomp_policy"],
37}
38