summaryrefslogtreecommitdiff
path: root/libnativeloader
diff options
context:
space:
mode:
authorMartin Stjernholm <mast@google.com>2021-01-28 22:54:14 +0000
committerTreehugger Robot <treehugger-gerrit@google.com>2021-01-29 11:43:41 +0000
commit2b84cf8a1dbc77df88fafec55ce5f45ff8778268 (patch)
tree6a988d1cac8488d79c44a360d940491c56e637ec /libnativeloader
parent7d1a7f1c5b08bd1a2e1a4d72b9d874229081982f (diff)
Don't use whole_static_libs in libnativeloader.
It has the effect that all the headers of those libs get included in the libnativeloader prebuilt snapshots, which in this particular case makes it contain all the xxx.sysprop.h generated headers from PlatformPropoerties. Test: mmm art/libnatveloader Test: `m art-module-sdk` and check that art-module-sdk-current.zip doesn't have any .sysprop.h files Bug: 178379642 Change-Id: Ic11007945fd6f1cd2d7996cae8a7b533c91aea7b
Diffstat (limited to 'libnativeloader')
-rw-r--r--libnativeloader/Android.bp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libnativeloader/Android.bp b/libnativeloader/Android.bp
index dbcde1255b..993e5d59e6 100644
--- a/libnativeloader/Android.bp
+++ b/libnativeloader/Android.bp
@@ -57,7 +57,7 @@ art_cc_library {
shared_libs: [
"libdl_android",
],
- whole_static_libs: [
+ static_libs: [
"PlatformProperties",
],
},