summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Duffin <paulduffin@google.com>2019-07-01 04:23:36 -0700
committerandroid-build-merger <android-build-merger@google.com>2019-07-01 04:23:36 -0700
commit40bd6dd67fadae56de11bc5fe6a89ff2f231efb9 (patch)
tree2e26f5adefd20419f6f1bdd5a98a31b241fa783d
parente859eee583171171900782f0a140c3ba75bcc176 (diff)
parentdad194b2074c48d934d062b897cc4f4e81bdcd51 (diff)
downloadapache-xml-40bd6dd67fadae56de11bc5fe6a89ff2f231efb9.tar.gz
Merge "Set default visibility to private" am: 65f62a8cef am: 081bb03d1d am: 4856cdb2c7
am: dad194b207 Change-Id: I75910ac02d9f90a5d84af61d555fbc19a2499728
-rw-r--r--Android.bp8
1 files changed, 8 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index 84a8f14..80c7ec7 100644
--- a/Android.bp
+++ b/Android.bp
@@ -14,11 +14,16 @@
// limitations under the License.
//
+package {
+ default_visibility: ["//visibility:private"],
+}
+
// The set of files that contribute to APIs.
// Generally, apache-xml source files are not marked with @hide so we add them
// one-by-one after having done so.
filegroup {
name: "apache-xml_api_files",
+ visibility: ["//libcore"],
srcs: [],
}
@@ -47,6 +52,9 @@ java_library {
// not be stripped. See b/24535627.
java_library {
name: "apache-xml-testdex",
+ visibility: [
+ "//art:__subpackages__",
+ ],
static_libs: ["apache-xml"],
installable: true,