add unittest/toolchains/BUILD as a test dep (#96)

* add unittest/toolchains/BUILD as a test dep

* remove extra whitespace
This commit is contained in:
c-parsons 2019-01-16 17:00:03 -05:00 committed by GitHub
parent 88904e62e5
commit c41adf3888
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 0 deletions

1
BUILD
View File

@ -15,6 +15,7 @@ filegroup(
srcs = [
"BUILD",
"//lib:test_deps",
"//toolchains/unittest:test_deps",
] + glob(["*.bzl"]),
)

View File

@ -47,3 +47,12 @@ toolchain(
toolchain = ":bash",
toolchain_type = TOOLCHAIN_TYPE,
)
filegroup(
name = "test_deps",
testonly = True,
srcs = [
"BUILD",
],
visibility = ["//:__pkg__"],
)