1cc_fuzz {
2    name: "example_fuzzer",
3    srcs: [
4        "example_fuzzer.cpp",
5    ],
6    host_supported: true,
7
8    // The advanced features below allow you to package your corpus and
9    // dictionary files during building. You can find more information about
10    // these features at:
11    //  - Corpus: https://llvm.org/docs/LibFuzzer.html#corpus
12    //  - Dictionaries: https://llvm.org/docs/LibFuzzer.html#dictionaries
13    // These features are not required for fuzzing, but are highly recommended
14    // to gain extra coverage.
15    corpus: ["corpus/*"],
16    dictionary: "example_fuzzer.dict",
17    fuzz_config: {
18        fuzz_on_haiku_device: false,
19        fuzz_on_haiku_host: false,
20    },
21}
22