summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorPirama Arumuga Nainar <pirama@google.com>2022-04-11 20:16:42 +0000
committerPirama Arumuga Nainar <pirama@google.com>2022-04-11 20:16:42 +0000
commitaaef6c09b7862deff411d3c629fa0109ea2fe33a (patch)
tree60ac7544e144ec6ce419d2dc790e471524042deb /libs
parentd2ce603bf2e05196eff9a9a5b040d7e8c8fe52d5 (diff)
downloadnative-aaef6c09b7862deff411d3c629fa0109ea2fe33a.tar.gz
Build with upstream lld: Fix incorrect static dependencies
Bug: http://b/197965342 Remove unnecessary `static_libs` dependencies or move them to `shared_libs` to build with upstream LLD. See b/197965342#comment1 (internal) for rationale. Some info is available externally at https://github.com/llvm/llvm-project/issues/42899. Per go/android-lld-static-lib-fix, OWNERS are added for visibility. No action is needed if the change looks good. This change will be merged after two business days with Global Approvers. Test: Build modules with aosp/2036867 in addition to presubmit Change-Id: Ie5543c809564bf05fc92f2fce2a96ebb4020032d
Diffstat (limited to 'libs')
-rw-r--r--libs/binder/tests/parcel_fuzzer/Android.bp3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/binder/tests/parcel_fuzzer/Android.bp b/libs/binder/tests/parcel_fuzzer/Android.bp
index 57d496d2fb..e5d32da4cc 100644
--- a/libs/binder/tests/parcel_fuzzer/Android.bp
+++ b/libs/binder/tests/parcel_fuzzer/Android.bp
@@ -29,7 +29,6 @@ cc_fuzz {
"libcutils",
"libhidlbase",
"liblog",
- "libutils",
],
target: {
@@ -37,12 +36,14 @@ cc_fuzz {
shared_libs: [
"libbinder_ndk",
"libbinder",
+ "libutils",
],
},
host: {
static_libs: [
"libbinder_ndk",
"libbinder",
+ "libutils",
],
},
darwin: {