blob: fc26f25bc4ca8a86cce2f1668978160e0c8ff12e [file] [log] [blame]
package(default_visibility = ["//visibility:public"])
load("tools/build_rules/go_rules", "go_library", "go_binary", "go_test")
go_library(
name = "lib1",
srcs = glob(
["*.go"],
exclude = ["*_test.go"],
),
)
go_test(
name = "lib1_test",
srcs = [
"lib1.go",
"lib1_test.go",
],
)
go_test(
name = "fail_test",
srcs = ["fail_test.go"],
)