diff options
-rw-r--r-- | libs/binder/rust/Android.bp | 2 | ||||
-rw-r--r-- | libs/binder/rust/sys/lib.rs | 8 | ||||
-rw-r--r-- | libs/dumputils/dump_utils.cpp | 1 |
3 files changed, 3 insertions, 8 deletions
diff --git a/libs/binder/rust/Android.bp b/libs/binder/rust/Android.bp index 57c9013f60..49d3401a4f 100644 --- a/libs/binder/rust/Android.bp +++ b/libs/binder/rust/Android.bp @@ -50,6 +50,8 @@ rust_library { "//apex_available:platform", "com.android.virt", ], + lints: "none", + clippy_lints: "none", } rust_bindgen { diff --git a/libs/binder/rust/sys/lib.rs b/libs/binder/rust/sys/lib.rs index 9095af29e0..1d1a295221 100644 --- a/libs/binder/rust/sys/lib.rs +++ b/libs/binder/rust/sys/lib.rs @@ -16,14 +16,6 @@ //! Generated Rust bindings to libbinder_ndk -#![allow( - non_camel_case_types, - non_snake_case, - non_upper_case_globals, - unused, - improper_ctypes, - missing_docs -)] use std::error::Error; use std::fmt; diff --git a/libs/dumputils/dump_utils.cpp b/libs/dumputils/dump_utils.cpp index 8b3c3ad8b5..b52ec39097 100644 --- a/libs/dumputils/dump_utils.cpp +++ b/libs/dumputils/dump_utils.cpp @@ -46,6 +46,7 @@ static const char* native_processes_to_dump[] = { // Native processes to dump on debuggable builds. static const char* debuggable_native_processes_to_dump[] = { + "/system/bin/keystore2", "/system/bin/vold", NULL, }; |