Files

20 lines
348 B
Python
Raw Permalink Normal View History

2020-01-27 10:04:07 -08:00
load("//tools:defs.bzl", "go_library", "go_test")
2018-04-27 10:37:02 -07:00
package(
default_applicable_licenses = ["//:license"],
licenses = ["notice"],
)
2018-10-23 00:19:11 -07:00
2018-04-27 10:37:02 -07:00
go_library(
name = "binary",
srcs = ["binary.go"],
visibility = ["//:sandbox"],
)
go_test(
name = "binary_test",
size = "small",
srcs = ["binary_test.go"],
2020-01-27 10:04:07 -08:00
library = ":binary",
2018-04-27 10:37:02 -07:00
)