Make the Bazel continuous build work again after the change that introduced apkbuilder.
--
MOS_MIGRATED_REVID=111935178
diff --git a/third_party/java/apkbuilder/BUILD b/third_party/java/apkbuilder/BUILD
index b7f1248..8a07672 100644
--- a/third_party/java/apkbuilder/BUILD
+++ b/third_party/java/apkbuilder/BUILD
@@ -9,6 +9,12 @@
visibility = ["//src:__pkg__"],
)
+# This filegroup is necessary so that Bazel finds an apkbuilder during the
+# bootstrap process when this file is used as
+# @bazel_tools/third_party/java/apkbuilder/BUILD. Otherwise, the bootstrap
+# would fail if an Android SDK was declared in the WORKSPACE file of Bazel.
+filegroup(name = "embedded_apkbuilder")
+
java_binary(
name = "apkbuilder",
srcs = glob(["java/**/*.java"]),