aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-11-19 00:07:51 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-11-19 00:07:51 +0000
commit2d036e859f6c245448451f356952fe294cf11e27 (patch)
tree3669947f4b031e38aedd1fb64f9d9112d7cab4ed
parentc675bbd4e805680a79050fde309b2b4c9b521a3a (diff)
parentb600abc3400fbdefa2ed8f7fcf01176aa676ff08 (diff)
downloadlibxml2-android14-qpr2-release.tar.gz
Change-Id: Id7639f3d0c40d52e6edaecd81f0ae7c3aa446c93
-rw-r--r--Android.bp10
1 files changed, 9 insertions, 1 deletions
diff --git a/Android.bp b/Android.bp
index a5d103da..28f4af04 100644
--- a/Android.bp
+++ b/Android.bp
@@ -238,11 +238,13 @@ genrule {
tools: ["libxml2_genseed"],
srcs: [
"test/schemas/*.xsd",
+ "test/schemas/*.inc",
+ "test/schemas/*.imp",
],
// The genseed tool only writes under its current directory.
// We move outputs to the correct location after generation..
cmd: "mkdir -p seed/schema && " +
- "$(location libxml2_genseed) schema $(in) && " +
+ "$(location libxml2_genseed) schema $(locations test/schemas/*.xsd) && " +
"mkdir -p $(genDir)/fuzz/seed/schema && " +
"mv -f seed/schema/* $(genDir)/fuzz/seed/schema",
out: [
@@ -429,13 +431,19 @@ genrule {
tools: ["libxml2_genseed"],
srcs: [
"test/*",
+ "test/dtds/*.dtd",
+ "test/errors/rec_ext.ent",
"test/errors/*.xml",
"test/errors10/*.xml",
"test/namespaces/*",
"test/valid/*.xml",
+ "test/valid/*.dtd",
+ "test/valid/dtds/*",
"test/VC/*",
+ "test/VC/dtds/*.dtd",
"test/VCM/*",
"test/XInclude/docs/*",
+ "test/XInclude/ents/*",
"test/XInclude/without-reader/*",
"test/xmlid/*",
],