blob: c4806ebe807ba817ea93e94f642188d8f3247171 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "qcow2",
srcs = ["qcow2.go"],
data = [
"@qemu//:qemu-img",
],
importpath = "source.monogon.dev/go/qcow2",
visibility = ["//visibility:public"],
x_defs = {
"xQemuImgPath": "$(rlocationpath @qemu//:qemu-img )",
},
)
go_test(
name = "qcow2_test",
srcs = ["qcow2_test.go"],
embed = [":qcow2"],
deps = ["@io_bazel_rules_go//go/runfiles:go_default_library"],
)