1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
load("//tools:defs.bzl", "go_library", "go_test")
package(licenses = ["notice"])
go_library(
name = "lib",
testonly = 1,
srcs = [
"go_test_dependency_go118.go",
"go_test_dependency_not_go118.go",
"lib.go",
],
visibility = ["//test/runtimes/runner:__pkg__"],
deps = [
"//pkg/log",
"//pkg/test/dockerutil",
"//pkg/test/testutil",
],
)
go_test(
name = "lib_test",
size = "small",
srcs = ["exclude_test.go"],
library = ":lib",
)
|