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