diff options
author | 2022-08-01 17:34:18 +0000 | |
---|---|---|
committer | 2022-08-01 17:34:18 +0000 | |
commit | c222e9b72c31f127f65bed1fbbccb0b5b384246b (patch) | |
tree | cf5c0eacb10f3101009e260001d29c989262e890 /fuzzing | |
parent | 3ee1ebd6a523446bdec06d6805f8e79833f0beec (diff) |
Removed cc_afl_fuzz build target.
cc_afl_fuzz is being removed and AFL fuzzers will now be built through a command line arg FUZZ_FRAMEWORK=AFL
Test: built locally
Change-Id: Id1aae3202a1eb5c4138c18c71c551ced0ba89d01
Diffstat (limited to 'fuzzing')
-rw-r--r-- | fuzzing/Android.bp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/fuzzing/Android.bp b/fuzzing/Android.bp index da1bfa6..857c611 100644 --- a/fuzzing/Android.bp +++ b/fuzzing/Android.bp @@ -20,20 +20,3 @@ cc_fuzz { host_supported: true, } - -cc_afl_fuzz { - name: "afl_libfdt_fuzzer", - srcs: [ - "libfdt_fuzzer.c", - ], - static_libs: [ - "libfdt", - ], - corpus: ["corpus/*"], - fuzz_config: { - cc: [ - "mikemcternan@google.com", - ], - }, - host_supported: true, -} |