From c41adf3888c8a5503e717da493a52a481f6691d6 Mon Sep 17 00:00:00 2001 From: c-parsons Date: Wed, 16 Jan 2019 17:00:03 -0500 Subject: [PATCH] add unittest/toolchains/BUILD as a test dep (#96) * add unittest/toolchains/BUILD as a test dep * remove extra whitespace --- BUILD | 1 + toolchains/unittest/BUILD | 9 +++++++++ 2 files changed, 10 insertions(+) diff --git a/BUILD b/BUILD index 9dbe12d..ad98f37 100644 --- a/BUILD +++ b/BUILD @@ -15,6 +15,7 @@ filegroup( srcs = [ "BUILD", "//lib:test_deps", + "//toolchains/unittest:test_deps", ] + glob(["*.bzl"]), ) diff --git a/toolchains/unittest/BUILD b/toolchains/unittest/BUILD index 19b1043..fbe3879 100644 --- a/toolchains/unittest/BUILD +++ b/toolchains/unittest/BUILD @@ -47,3 +47,12 @@ toolchain( toolchain = ":bash", toolchain_type = TOOLCHAIN_TYPE, ) + +filegroup( + name = "test_deps", + testonly = True, + srcs = [ + "BUILD", + ], + visibility = ["//:__pkg__"], +)