load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "grub", srcs = ["grub.go"], importpath = "edge-infra.dev/pkg/sds/lib/os/grub", visibility = ["//visibility:public"], deps = ["//pkg/sds/lib/os/file"], ) go_test( name = "grub_test", srcs = ["grub_test.go"], embed = [":grub"], deps = [ "//pkg/sds/lib/os/file/fake", "@com_github_stretchr_testify//assert", "@com_github_stretchr_testify//mock", ], )