blob: 9a954657762e63fe0fb2281b959fa182d607f17c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
load("//tools:defs.bzl", "go_library", "go_test")
package(licenses = ["notice"])
go_library(
name = "mitigate",
srcs = [
"cpu.go",
"mitigate.go",
],
)
go_test(
name = "mitigate_test",
size = "small",
srcs = ["cpu_test.go"],
library = ":mitigate",
)
|