mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
4284f892ce
* rename to attestationconfigapi + put client and fetcher inside pkg * rename api/version to versionsapi and put fetcher + client inside pkg * rename AttestationConfigAPIFetcher to Fetcher
45 lines
1.2 KiB
Python
45 lines
1.2 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "cmd",
|
|
srcs = [
|
|
"api.go",
|
|
"aws.go",
|
|
"azure.go",
|
|
"flags.go",
|
|
"gcp.go",
|
|
"image.go",
|
|
"info.go",
|
|
"measurements.go",
|
|
"measurementsenvelope.go",
|
|
"measurementsmerge.go",
|
|
"measurementsupload.go",
|
|
"must.go",
|
|
"nop.go",
|
|
"openstack.go",
|
|
"qemu.go",
|
|
"secureboot.go",
|
|
"upload.go",
|
|
],
|
|
importpath = "github.com/edgelesssys/constellation/v2/image/upload/internal/cmd",
|
|
visibility = ["//image/upload:__subpackages__"],
|
|
deps = [
|
|
"//internal/api/versionsapi",
|
|
"//internal/attestation/measurements",
|
|
"//internal/cloud/cloudprovider",
|
|
"//internal/logger",
|
|
"//internal/osimage",
|
|
"//internal/osimage/archive",
|
|
"//internal/osimage/aws",
|
|
"//internal/osimage/azure",
|
|
"//internal/osimage/gcp",
|
|
"//internal/osimage/imageinfo",
|
|
"//internal/osimage/measurementsuploader",
|
|
"//internal/osimage/nop",
|
|
"//internal/osimage/secureboot",
|
|
"@com_github_spf13_afero//:afero",
|
|
"@com_github_spf13_cobra//:cobra",
|
|
"@org_uber_go_zap//zapcore",
|
|
],
|
|
)
|