1package { 2 default_applicable_licenses: ["Android-Apache-2.0"], 3} 4 5cc_fuzz { 6 name: "example_fuzzer", 7 srcs: [ 8 "example_fuzzer.cpp", 9 ], 10 host_supported: true, 11 12 // The advanced features below allow you to package your corpus and 13 // dictionary files during building. You can find more information about 14 // these features at: 15 // - Corpus: https://llvm.org/docs/LibFuzzer.html#corpus 16 // - Dictionaries: https://llvm.org/docs/LibFuzzer.html#dictionaries 17 // These features are not required for fuzzing, but are highly recommended 18 // to gain extra coverage. 19 corpus: ["corpus/*"], 20 dictionary: "example_fuzzer.dict", 21 fuzz_config: { 22 description: "Test Fuzzer", 23 production_date: "6/8/2019", 24 critical: false, 25 fuzz_on_haiku_device: false, 26 fuzz_on_haiku_host: false, 27 triage_assignee: "davfu@google.com" 28 }, 29} 30