mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-26 16:09:45 -05:00
c478df36fa
Signed-off-by: Daniel Weiße <dw@edgeless.systems>
15 lines
461 B
Python
15 lines
461 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "tpm",
|
|
srcs = ["tpm.go"],
|
|
importpath = "github.com/edgelesssys/constellation/v2/measurement-reader/internal/tpm",
|
|
visibility = ["//measurement-reader:__subpackages__"],
|
|
deps = [
|
|
"//internal/attestation/vtpm",
|
|
"//measurement-reader/internal/sorted",
|
|
"@com_github_google_go_tpm//tpm2",
|
|
"@com_github_google_go_tpm_tools//client",
|
|
],
|
|
)
|