You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
429 B

load(":defs.bzl", "android_jar")
android_jar(
name = "android_jar",
visibility = ["//visibility:public"],
)
# TODO(b/175833857): This is a stub, should remove.
alias(
name = "merge_manifests",
actual = ":fail",
visibility = ["//visibility:public"],
)
genrule(
name = "gen_fail",
outs = ["fail.sh"],
cmd = "echo 'exit 1' > $@",
executable = 1,
)
sh_binary(
name = "fail",
srcs =[":fail.sh"],
)