blob: 33a9d9116c69b3911c9b2b9a9e61ae8df9742659 [file] [log] [blame]
Lorenz Brun1cf17952023-02-13 17:41:59 +01001load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
2
3go_library(
4 name = "bootparam",
5 srcs = ["bootparam.go"],
6 importpath = "source.monogon.dev/metropolis/pkg/bootparam",
7 visibility = ["//visibility:public"],
8)
9
10go_test(
11 name = "bootparam_test",
12 srcs = ["bootparam_test.go"],
13 gc_goopts = ["-d=libfuzzer"],
14 deps = [
15 ":bootparam",
16 "//metropolis/pkg/bootparam/ref",
17 "@com_github_google_go_cmp//cmp",
18 ],
19)