1
2
3cc_fuzz {
4 name: "example_afl_fuzzer",
5 srcs: [
6 "example_afl_fuzzer.cpp",
7 ],
8 fuzz_config: {
9 triage_assignee: "cobark@google.com",
10 },
11 fuzzing_frameworks: {
12 afl: true,
13 libfuzzer: false,
14 },
15 cflags: [
16 "-Wno-array-bounds",
17 ],
18}