diff options
| author | 2022-01-07 22:23:49 +0000 | |
|---|---|---|
| committer | 2022-01-21 22:26:01 +0000 | |
| commit | ff6fef39230879eb88587ebce42a6373d3af64cc (patch) | |
| tree | 22304283e66ad3eee578ec6f273c0d131dc4be39 | |
| parent | 2aab4a792be4311a91d389316c857f2b8f576dc8 (diff) | |
remove libbinder_ndk_host_user
no longer needed
Bug: 211908498
Test: build
Change-Id: I995c8d1a8a77ca675a09f0a3e48c17b1e967a2e5
| -rw-r--r-- | libs/binder/ndk/Android.bp | 10 | ||||
| -rw-r--r-- | libs/binder/tests/Android.bp | 1 | ||||
| -rw-r--r-- | libs/gralloc/types/Android.bp | 5 | ||||
| -rw-r--r-- | libs/gralloc/types/fuzzer/Android.bp | 3 |
4 files changed, 3 insertions, 16 deletions
diff --git a/libs/binder/ndk/Android.bp b/libs/binder/ndk/Android.bp index 77493b3882..79c8c8f88b 100644 --- a/libs/binder/ndk/Android.bp +++ b/libs/binder/ndk/Android.bp @@ -32,16 +32,6 @@ license { ], } -// TODO(b/211908498): remove this -cc_defaults { - name: "libbinder_ndk_host_user", - target: { - darwin: { - enabled: false, - }, - }, -} - cc_library { name: "libbinder_ndk", diff --git a/libs/binder/tests/Android.bp b/libs/binder/tests/Android.bp index 86da5887a8..8c7d55e5a9 100644 --- a/libs/binder/tests/Android.bp +++ b/libs/binder/tests/Android.bp @@ -179,7 +179,6 @@ cc_test { }, defaults: [ "binder_test_defaults", - "libbinder_ndk_host_user", "libbinder_tls_shared_deps", ], diff --git a/libs/gralloc/types/Android.bp b/libs/gralloc/types/Android.bp index cda9e19c1e..9a7bad4911 100644 --- a/libs/gralloc/types/Android.bp +++ b/libs/gralloc/types/Android.bp @@ -23,7 +23,6 @@ package { cc_library { name: "libgralloctypes", - defaults: ["libbinder_ndk_host_user"], cflags: [ "-Wall", "-Werror", @@ -33,7 +32,7 @@ cc_library { target: { darwin: { enabled: false, - } + }, }, vendor_available: true, @@ -48,7 +47,7 @@ cc_library { min_sdk_version: "29", srcs: [ - "Gralloc4.cpp" + "Gralloc4.cpp", ], shared_libs: [ diff --git a/libs/gralloc/types/fuzzer/Android.bp b/libs/gralloc/types/fuzzer/Android.bp index 6689771a24..3c3b6af670 100644 --- a/libs/gralloc/types/fuzzer/Android.bp +++ b/libs/gralloc/types/fuzzer/Android.bp @@ -9,12 +9,11 @@ package { cc_fuzz { name: "libgralloctypes_fuzzer", - defaults: ["libbinder_ndk_host_user"], host_supported: true, target: { darwin: { enabled: false, - } + }, }, fuzz_config: { |