blob: da1bfa6d41769da3d1f7149067b9bd8aef78bd8a [file] [log] [blame]
// Copyright 2022 The Android Open Source Project
package {
default_applicable_licenses: ["external_dtc_license"],
}
cc_fuzz {
name: "libfdt_fuzzer",
srcs: [
"libfdt_fuzzer.c",
],
static_libs: [
"libfdt",
],
corpus: ["corpus/*"],
fuzz_config: {
cc: [
"ptosi@google.com",
],
},
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,
}