blob: 97e792c4ccffda74491f45abea0eb36177c58bd2 [file] [log] [blame]
package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
cc_fuzz {
name: "example_fuzzer",
srcs: [
"example_fuzzer.cpp",
],
host_supported: true,
// The advanced features below allow you to package your corpus and
// dictionary files during building. You can find more information about
// these features at:
// - Corpus: https://llvm.org/docs/LibFuzzer.html#corpus
// - Dictionaries: https://llvm.org/docs/LibFuzzer.html#dictionaries
// These features are not required for fuzzing, but are highly recommended
// to gain extra coverage.
corpus: ["corpus/*"],
dictionary: "example_fuzzer.dict",
fuzz_config: {
description: "Test Fuzzer",
production_date: "6/8/2019",
critical: false,
fuzz_on_haiku_device: true,
fuzz_on_haiku_host: true,
},
}