mirror of https://github.com/kubernetes/kops.git
17 lines
437 B
Python
17 lines
437 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"diff.go",
|
|
"diffmatchpatch.go",
|
|
"match.go",
|
|
"mathutil.go",
|
|
"patch.go",
|
|
"stringutil.go",
|
|
],
|
|
importmap = "k8s.io/kops/vendor/github.com/sergi/go-diff/diffmatchpatch",
|
|
importpath = "github.com/sergi/go-diff/diffmatchpatch",
|
|
visibility = ["//visibility:public"],
|
|
)
|