diff options
author | Martin Stjernholm <mast@google.com> | 2020-05-07 01:45:27 +0100 |
---|---|---|
committer | Martin Stjernholm <mast@google.com> | 2020-05-11 08:55:41 +0000 |
commit | 75b961a4cd926e647eb20ebf20ec5af410f7e1df (patch) | |
tree | 4c83c209ca826494c440dedf1815217721e4439b /sigchainlib | |
parent | 3a079094a2b92a8dce725848d28abd5de7a84e9f (diff) |
Add visibilities for prebuilts.
These visibilities are intentionally blunt, to allow the prebuilts to
move around for now.
Many of these visibilities may also go away completely again if the
exported binaries are changed to compile internal ART libraries
statically.
Test: v
1. build/soong/scripts/build-aml-prebuilts.sh art-module-sdk \
art-module-test-exports conscrypt-module-sdk \
conscrypt-module-test-exports conscrypt-module-host-exports \
art-module-host-exports
2. Unzip out/aml/soong/mainline-sdks/*.zip into separate
subdirectories under prebuilts/runtime
3. env SOONG_ALLOW_MISSING_DEPENDENCIES=true m nothing
(together with the topic of https://r.android.com/1252167)
Bug: 155921753
Change-Id: Id8bbc8aedb0b87e30e9cf3d2a9f34b33cb71756c
Diffstat (limited to 'sigchainlib')
-rw-r--r-- | sigchainlib/Android.bp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sigchainlib/Android.bp b/sigchainlib/Android.bp index 0e25f62d9b..6225e0c6d9 100644 --- a/sigchainlib/Android.bp +++ b/sigchainlib/Android.bp @@ -18,6 +18,10 @@ cc_library { name: "libsigchain", defaults: ["art_defaults"], visibility: [ + // Visibility for prebuilt binaries from the prebuilt of this module. + // TODO(b/155921753): Restrict this when prebuilts are in their proper + // locations. + "//prebuilts:__subpackages__", // TODO(b/142944043, b/133140750): Clean this up. "//frameworks/base/cmds/app_process", ], |