mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
36 lines
960 B
Python
36 lines
960 B
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",
|
|
"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/cloud/cloudprovider",
|
|
"//internal/logger",
|
|
"//internal/osimage",
|
|
"//internal/osimage/archive",
|
|
"//internal/osimage/aws",
|
|
"//internal/osimage/azure",
|
|
"//internal/osimage/gcp",
|
|
"//internal/osimage/nop",
|
|
"//internal/osimage/secureboot",
|
|
"//internal/versionsapi",
|
|
"@com_github_spf13_afero//:afero",
|
|
"@com_github_spf13_cobra//:cobra",
|
|
"@org_uber_go_zap//zapcore",
|
|
],
|
|
)
|