
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>
42 lines
1.0 KiB
Python
42 lines
1.0 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"constants.go",
|
|
"context.go",
|
|
"csi_entry_state.go",
|
|
"csi_param_state.go",
|
|
"escape_intermediate_state.go",
|
|
"escape_state.go",
|
|
"event_handler.go",
|
|
"ground_state.go",
|
|
"osc_string_state.go",
|
|
"parser.go",
|
|
"parser_action_helpers.go",
|
|
"parser_actions.go",
|
|
"states.go",
|
|
"utilities.go",
|
|
],
|
|
importmap = "k8s.io/kubernetes/vendor/github.com/Azure/go-ansiterm",
|
|
importpath = "github.com/Azure/go-ansiterm",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
filegroup(
|
|
name = "package-srcs",
|
|
srcs = glob(["**"]),
|
|
tags = ["automanaged"],
|
|
visibility = ["//visibility:private"],
|
|
)
|
|
|
|
filegroup(
|
|
name = "all-srcs",
|
|
srcs = [
|
|
":package-srcs",
|
|
"//vendor/github.com/Azure/go-ansiterm/winterm:all-srcs",
|
|
],
|
|
tags = ["automanaged"],
|
|
visibility = ["//visibility:public"],
|
|
)
|