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