2023-03-09 09:23:42 -05:00
|
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
|
|
|
|
go_library(
|
|
|
|
name = "qemu",
|
|
|
|
srcs = [
|
|
|
|
"issuer.go",
|
|
|
|
"qemu.go",
|
|
|
|
"validator.go",
|
|
|
|
],
|
|
|
|
importpath = "github.com/edgelesssys/constellation/v2/internal/attestation/qemu",
|
|
|
|
visibility = ["//:__subpackages__"],
|
|
|
|
deps = [
|
2023-03-08 08:13:57 -05:00
|
|
|
"//internal/attestation",
|
2023-06-09 09:41:02 -04:00
|
|
|
"//internal/attestation/variant",
|
2023-03-09 09:23:42 -05:00
|
|
|
"//internal/attestation/vtpm",
|
2023-04-06 11:00:56 -04:00
|
|
|
"//internal/config",
|
2023-07-07 07:17:58 -04:00
|
|
|
"@com_github_google_go_tpm//legacy/tpm2",
|
2023-03-09 09:23:42 -05:00
|
|
|
"@com_github_google_go_tpm_tools//client",
|
|
|
|
"@com_github_google_go_tpm_tools//proto/attest",
|
|
|
|
],
|
|
|
|
)
|