
This vendor change was purely for the changes in docker to allow for setting the Masked and Read-only paths. See: moby/moby#36644 But because of the docker dep update it also needed cadvisor to be updated and winterm due to changes in pkg/tlsconfig in docker See: google/cadvisor#1967 Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
39 lines
984 B
Python
39 lines
984 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"ansi.go",
|
|
"api.go",
|
|
"attr_translation.go",
|
|
"cursor_helpers.go",
|
|
"erase_helpers.go",
|
|
"scroll_helper.go",
|
|
"utilities.go",
|
|
"win_event_handler.go",
|
|
],
|
|
importmap = "k8s.io/kubernetes/vendor/github.com/Azure/go-ansiterm/winterm",
|
|
importpath = "github.com/Azure/go-ansiterm/winterm",
|
|
visibility = ["//visibility:public"],
|
|
deps = select({
|
|
"@io_bazel_rules_go//go/platform:windows": [
|
|
"//vendor/github.com/Azure/go-ansiterm:go_default_library",
|
|
],
|
|
"//conditions:default": [],
|
|
}),
|
|
)
|
|
|
|
filegroup(
|
|
name = "package-srcs",
|
|
srcs = glob(["**"]),
|
|
tags = ["automanaged"],
|
|
visibility = ["//visibility:private"],
|
|
)
|
|
|
|
filegroup(
|
|
name = "all-srcs",
|
|
srcs = [":package-srcs"],
|
|
tags = ["automanaged"],
|
|
visibility = ["//visibility:public"],
|
|
)
|