Snap for 12755599 from bb7d3aa6fe to 25Q1-release

Change-Id: I83628795cd37ca0cf262b8bd50ef165a36396d8a
This commit is contained in:
Android Build Coastguard Worker 2024-12-06 00:20:00 +00:00
commit 54d2ccaf3e
2 changed files with 4 additions and 4 deletions

View file

@ -22,6 +22,8 @@ using android::fuzzService;
using android::GateKeeperProxy;
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
// TODO(b/183141167): need to rewrite 'dump' to avoid SIGPIPE.
signal(SIGPIPE, SIG_IGN);
auto gatekeeperService = new GateKeeperProxy();
fuzzService(gatekeeperService, FuzzedDataProvider(data, size));
return 0;

View file

@ -27,18 +27,16 @@ rust_binary {
"src/hal_main.rs",
],
rustlibs: [
"android.hardware.security.secretkeeper-V1-rust",
"libandroid_logger",
"libauthgraph_hal",
"libauthgraph_wire",
"libbinder_rs",
"liblibc",
"liblog_rust",
"libsecretkeeper_hal",
"libsecretkeeper_hal_v1",
"libtrusty-rs",
],
defaults: [
"secretkeeper_use_latest_hal_aidl_rust",
],
prefer_rlib: true,
}