aboutsummaryrefslogtreecommitdiffhomepage
path: root/BUILD
diff options
context:
space:
mode:
authorGravatar Googler <noreply@google.com>2017-07-25 21:03:05 +0200
committerGravatar Jakob Buchgraber <buchgr@google.com>2017-07-26 10:34:58 +0200
commitcc8586261f6c6707f3f638706c85c4b42d43c459 (patch)
tree17397160a4712f8225c535d5e0ebdd514aa00fd7 /BUILD
parentf3c6a9c8f2e806fef1cd2ee8822809d74b4bd718 (diff)
Added a dummy target for fetching toolchains, used for remote execution.
This is a temporary workaround for toolchain fetching (https://github.com/bazelbuild/bazel/issues/3246). PiperOrigin-RevId: 163103317
Diffstat (limited to 'BUILD')
-rw-r--r--BUILD9
1 files changed, 9 insertions, 0 deletions
diff --git a/BUILD b/BUILD
index 14e114c054..93543f27a4 100644
--- a/BUILD
+++ b/BUILD
@@ -93,3 +93,12 @@ genrule(
# Public but bazel-only visibility.
visibility = ["//:__subpackages__"],
)
+
+# This is a workaround for fetching Bazel toolchains, for remote execution.
+# See https://github.com/bazelbuild/bazel/issues/3246.
+# Will be removed once toolchain fetching is supported.
+filegroup(
+ name = "dummy_toolchain_reference",
+ srcs = ["@bazel_toolchains//configs/debian8_clang/0.1.0:empty"],
+ visibility = ["//visibility:public"],
+)