blob: 857c611bbb0dfc4906863fb2ab5189e61d55f79f [file] [log] [blame]
Eugene Rodionov49a2e712022-02-16 01:45:13 +00001// 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: [
Mike McTernanbd0e2922022-07-22 09:28:07 +01009 "libfdt_fuzzer.c",
Eugene Rodionov49a2e712022-02-16 01:45:13 +000010 ],
11 static_libs: [
12 "libfdt",
13 ],
Krzysztof Kosiński3745ef32022-07-27 23:42:36 +000014 corpus: ["corpus/*"],
Eugene Rodionovcade7692022-06-14 17:10:06 +000015 fuzz_config: {
16 cc: [
17 "ptosi@google.com",
18 ],
19 },
Krzysztof Kosiński3745ef32022-07-27 23:42:36 +000020 host_supported: true,
21}
22