xref: /aosp_15_r20/tools/security/fuzzing/example_afl_fuzzer/Android.bp (revision d9ecfb0f4d734c9ce41cde8ac4d585b094fd4222)
1
2
3cc_fuzz {
4    name: "example_afl_fuzzer",
5    srcs: [
6        "example_afl_fuzzer.cpp",
7    ],
8    fuzz_config: {
9        triage_assignee: "[email protected]",
10    },
11    fuzzing_frameworks: {
12        afl: true,
13        libfuzzer: false,
14    },
15    cflags: [
16        "-Wno-array-bounds",
17    ],
18}