diff options
author | Steven Moreland <smoreland@google.com> | 2022-01-07 22:15:32 +0000 |
---|---|---|
committer | Steven Moreland <smoreland@google.com> | 2022-01-07 22:18:58 +0000 |
commit | 738d3d5950523bffb2d7ef714f56a4d5f5242a1a (patch) | |
tree | 126a796d8044dccafc750fc3854c5589a26c8a19 /common | |
parent | e0a7d60db0d4e26a5821a966fe1fee6574743886 (diff) |
remove libbinder_ndk_host_user
no longer needed
Bug: 211908498
Test: build
Change-Id: Iadffdf1d7759e32986c4e0e28acb2087d9f27ab0
Diffstat (limited to 'common')
-rw-r--r-- | common/support/Android.bp | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/common/support/Android.bp b/common/support/Android.bp index b24893b16e..718901ef6a 100644 --- a/common/support/Android.bp +++ b/common/support/Android.bp @@ -11,7 +11,11 @@ cc_library_static { name: "libaidlcommonsupport", vendor_available: true, host_supported: true, - defaults: ["libbinder_ndk_host_user"], + target: { + darwin: { + enabled: false, + }, + }, srcs: ["NativeHandle.cpp"], export_include_dirs: ["include"], shared_libs: [ @@ -28,7 +32,11 @@ cc_library_static { cc_test { name: "libaidlcommonsupport_test", host_supported: true, - defaults: ["libbinder_ndk_host_user"], + target: { + darwin: { + enabled: false, + }, + }, srcs: ["test.cpp"], static_libs: [ "android.hardware.common-V2-ndk", |