Lorenz Brun | 1cf1795 | 2023-02-13 17:41:59 +0100 | [diff] [blame^] | 1 | load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") |
2 | |||||
3 | go_library( | ||||
4 | name = "bootparam", | ||||
5 | srcs = ["bootparam.go"], | ||||
6 | importpath = "source.monogon.dev/metropolis/pkg/bootparam", | ||||
7 | visibility = ["//visibility:public"], | ||||
8 | ) | ||||
9 | |||||
10 | go_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 | ) |