blob: 18dcd52232e7baf979cd09a29801d17fa81386bd [file] [log] [blame]
# NOTE: GerritLauncher must be a single, self-contained class. Do not add any
# additional srcs or deps to this rule.
java_library(
name = "launcher",
srcs = ["GerritLauncher.java"],
resources = [":workspace-root.txt"],
visibility = ["//visibility:public"],
)
# The root of the workspace is non-hermetic, but we need it for
# on-the-fly GWT recompiles and PolyGerrit updates.
genrule(
name = "gen_root",
outs = ["workspace-root.txt"],
cmd = ("cat bazel-out/stable-status.txt | " +
"grep STABLE_WORKSPACE_ROOT | cut -d ' ' -f 2 > $@"),
stamp = 1,
visibility = ["//visibility:public"],
)