From 64000135cb74bad9c51f2f854509e53a058fa840 Mon Sep 17 00:00:00 2001 From: Eric Anderson Date: Tue, 18 Dec 2018 12:59:00 -0800 Subject: [PATCH] bazel: ignore examples/ from root WORKSPACE "bazel build ..." from the root will no longer build examples/. But "cd examples; bazel build ..." still does. --- .bazelignore | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .bazelignore diff --git a/.bazelignore b/.bazelignore new file mode 100644 index 00000000000..211ea0c2102 --- /dev/null +++ b/.bazelignore @@ -0,0 +1,3 @@ +# examples has its own WORKSPACE. Ignore as part of this root WORKSPACE so that +# we don't need to repeat dependencies. +examples/