constellation/image/measured-boot/cmd/BUILD.bazel
2023-10-12 14:42:24 +02:00

29 lines
720 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
go_library(
name = "cmd_lib",
srcs = ["main.go"],
importpath = "github.com/edgelesssys/constellation/v2/image/measured-boot/cmd",
visibility = ["//visibility:private"],
deps = [
"//image/measured-boot/extract",
"//image/measured-boot/measure",
"//image/measured-boot/pesection",
"@com_github_spf13_afero//:afero",
],
)
go_binary(
name = "cmd",
# keep
data = [
"@systemd//:bin/systemd-dissect",
],
embed = [":cmd_lib"],
# keep
env = {
"DISSECT_TOOLCHAIN": "$(rootpath @systemd//:bin/systemd-dissect)",
},
visibility = ["//visibility:public"],
)