• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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: "sndfile_fuzzer",
11    host_supported: true,
12    srcs: [
13        "sndfile_fuzzer.cpp",
14    ],
15    static_libs: [
16        "libaudioutils",
17        "libbase",
18        "libsndfile",
19    ],
20    target: {
21        android: {
22            cflags: ["-DSNDFILE_FUZZER_DEVICE"],
23        },
24        host: {
25            cflags: ["-DSNDFILE_FUZZER_HOST"],
26        },
27    },
28    corpus: ["corpus/*"],
29}
30