blob: 5cb406afc24f9f6b7b9834d6be730a4cc6f3721a [file] [log] [blame]
package {
// See: http://go/android-license-faq
default_applicable_licenses: ["frameworks_native_license"],
}
aidl_interface {
name: "testServiceInterface",
srcs: ["ITestService.aidl"],
unstable: true,
backend: {
rust: {
enabled: true,
},
},
}
rust_fuzz {
name: "example_service_fuzzer",
srcs: [
"service_fuzzer.rs",
],
rustlibs: [
"libbinder_rs",
"libbinder_random_parcel_rs",
"testServiceInterface-rust",
],
fuzz_config: {
cc: [
"waghpawan@google.com",
"smoreland@google.com",
],
// hotlist "AIDL fuzzers bugs" on buganizer
hotlists: ["4637097"],
},
}