summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Duffin <paulduffin@google.com>2019-07-01 04:05:29 -0700
committerandroid-build-merger <android-build-merger@google.com>2019-07-01 04:05:29 -0700
commit4856cdb2c787d4dcc0485a3edd55defdc31afb87 (patch)
tree2e26f5adefd20419f6f1bdd5a98a31b241fa783d
parentb42127adf8280d950f1c4a093d872247f278db1c (diff)
parent081bb03d1dd081d8603d0e5cd5fc0cef6dad255c (diff)
downloadapache-xml-4856cdb2c787d4dcc0485a3edd55defdc31afb87.tar.gz
Merge "Set default visibility to private" am: 65f62a8cef
am: 081bb03d1d Change-Id: If3acea421d5f92dbad02e0af90542f1792b75fdf
-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,