1cc_fuzz {
2    name: "sndfile_fuzzer",
3    host_supported: true,
4    srcs: [
5        "sndfile_fuzzer.cpp",
6    ],
7    static_libs: [
8        "libaudioutils",
9        "libbase",
10        "libsndfile",
11    ],
12    target: {
13        android: {
14            cflags: ["-DSNDFILE_FUZZER_DEVICE"],
15        },
16        host: {
17            cflags: ["-DSNDFILE_FUZZER_HOST"],
18        },
19    },
20    corpus: ["corpus/*"],
21}
22