mirror of https://github.com/kubernetes/kops.git
16 lines
424 B
Python
16 lines
424 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"runewidth.go",
|
|
"runewidth_js.go",
|
|
"runewidth_posix.go",
|
|
"runewidth_table.go",
|
|
"runewidth_windows.go",
|
|
],
|
|
importmap = "k8s.io/kops/vendor/github.com/mattn/go-runewidth",
|
|
importpath = "github.com/mattn/go-runewidth",
|
|
visibility = ["//visibility:public"],
|
|
)
|