aboutsummaryrefslogtreecommitdiff
path: root/fuzzing/Android.bp
blob: 857c611bbb0dfc4906863fb2ab5189e61d55f79f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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,
}