
Update required to continue work on #64021 - The govmomi tag API changed - Pulling in the new vapi/simulator package for testing the VCP Zones impl
29 lines
825 B
Python
29 lines
825 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["client.go"],
|
|
importmap = "k8s.io/kubernetes/vendor/github.com/vmware/govmomi/vapi/rest",
|
|
importpath = "github.com/vmware/govmomi/vapi/rest",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//vendor/github.com/vmware/govmomi/vapi/internal:go_default_library",
|
|
"//vendor/github.com/vmware/govmomi/vim25:go_default_library",
|
|
"//vendor/github.com/vmware/govmomi/vim25/soap:go_default_library",
|
|
],
|
|
)
|
|
|
|
filegroup(
|
|
name = "package-srcs",
|
|
srcs = glob(["**"]),
|
|
tags = ["automanaged"],
|
|
visibility = ["//visibility:private"],
|
|
)
|
|
|
|
filegroup(
|
|
name = "all-srcs",
|
|
srcs = [":package-srcs"],
|
|
tags = ["automanaged"],
|
|
visibility = ["//visibility:public"],
|
|
)
|