diff options
author | 2020-06-04 16:29:36 -0700 | |
---|---|---|
committer | 2020-06-11 02:20:35 +0000 | |
commit | 3255f5034ff7c27d22c47b4101abc04fb6c86913 (patch) | |
tree | 856b41be4d56e4c6c3681407408ae2de5c10c936 | |
parent | 0e6d73a65e577e6416ee68490ca19ca3123f7fc6 (diff) |
Fix visibility rules now that Make supports visibility checks
Previously, Soong visibility rules did not affect Make modules. Now
these checks have been implemented in:
https://android-review.googlesource.com/c/platform/build/+/1324454
So this fixes the visibility rules to include modules that were
previously using libdexfile_support_static.
Bug: 158599308
Test: treehugger
Change-Id: I9f73d61036f6013e43d6c26ba29ed952e0a17a56
-rw-r--r-- | libdexfile/Android.bp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libdexfile/Android.bp b/libdexfile/Android.bp index adb2d287ad..1f1f75b806 100644 --- a/libdexfile/Android.bp +++ b/libdexfile/Android.bp @@ -445,6 +445,7 @@ cc_library_static { // Required for the simpleperf binary in the NDK. No other modules than // //system/extras/simpleperf:simpleperf_ndk are allowed to use it. "//system/extras/simpleperf", + "//cts/tests/tests/simpleperf", ], defaults: [ "libdexfile_static_defaults", |