1package {
2    // http://go/android-license-faq
3    // A large-scale-change added 'default_applicable_licenses' to import
4    // the below license kinds from "system_media_license":
5    //   SPDX-license-identifier-Apache-2.0
6    default_applicable_licenses: ["system_media_license"],
7}
8
9cc_fuzz {
10    name: "monoblend_fuzzer",
11    srcs: [
12        "monoblend_fuzzer.cpp",
13    ],
14    static_libs: [
15        "libaudioutils",
16        "liblog",
17    ],
18    sanitize: {
19        misc_undefined: [
20            "bounds",
21            "signed-integer-overflow",
22            "unsigned-integer-overflow",
23        ],
24    },
25}
26