summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Fuller <nfuller@google.com>2018-09-26 08:01:33 -0700
committerandroid-build-merger <android-build-merger@google.com>2018-09-26 08:01:33 -0700
commit4832bd63d7557d7296838da6b82bda50050ff3d4 (patch)
tree82c46335d479e41a331f19872617f304681db9dd
parent331ce755f7619951980d327d19bb073f0b02bf37 (diff)
parentd34cf2ca8ea4eb07247ca3740fb408d2fa1c9f0c (diff)
downloadapache-xml-4832bd63d7557d7296838da6b82bda50050ff3d4.tar.gz
Merge "Prepare for adding apache-xml to core APIs" am: ad4d3315d4 am: a017e9f345
am: d34cf2ca8e Change-Id: I269b27bd639f3a3306c4aaf7a76a22cb30a43d6c
-rw-r--r--Android.bp15
1 files changed, 12 insertions, 3 deletions
diff --git a/Android.bp b/Android.bp
index d4e2a9b..1189a31 100644
--- a/Android.bp
+++ b/Android.bp
@@ -14,14 +14,23 @@
// limitations under the License.
//
+// 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",
+ srcs: [],
+}
+
java_library {
name: "apache-xml",
- installable: true,
- hostdex: true,
- no_framework_libs: true,
srcs: ["src/main/java/**/*.java"],
java_resource_dirs: ["src/main/java"],
+
+ installable: true,
+ hostdex: true,
errorprone: {
javacflags: ["-Xep:MissingOverride:OFF"],
},
+ no_framework_libs: true,
}