1package {
2    // See: http://go/android-license-faq
3    default_applicable_licenses: ["frameworks_native_license"],
4}
5
6rust_defaults {
7    name: "service_fuzzer_defaults_rs",
8    rustlibs: [
9        "libbinder_rs",
10        "libbinder_random_parcel_rs",
11    ],
12    fuzz_config: {
13        cc: [
14            "waghpawan@google.com",
15            "smoreland@google.com",
16        ],
17        triage_assignee: "waghpawan@google.com",
18        // hotlist "AIDL fuzzers bugs" on buganizer
19        hotlists: ["4637097"],
20    },
21}
22
23rust_fuzz {
24    name: "parcel_fuzzer_rs",
25    srcs: [
26        "parcel_fuzzer.rs",
27    ],
28    defaults: [
29        "service_fuzzer_defaults_rs",
30    ],
31    rustlibs: [
32        "libarbitrary",
33        "libnum_traits",
34        "binderReadParcelIface-rust",
35    ],
36}
37