1// Copyright 2022 The Android Open Source Project 2package { 3 default_applicable_licenses: ["external_dtc_license"], 4} 5 6cc_fuzz { 7 name: "libfdt_fuzzer", 8 srcs: [ 9 "libfdt_fuzzer.c", 10 ], 11 static_libs: [ 12 "libfdt", 13 ], 14 corpus: ["corpus/*"], 15 fuzz_config: { 16 cc: [ 17 "[email protected]", 18 ], 19 }, 20 host_supported: true, 21} 22 23