peridot/vendor/github.com/sergi/go-diff/diffmatchpatch/BUILD.bazel
2022-07-07 22:13:21 +02:00

18 lines
469 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "diffmatchpatch",
srcs = [
"diff.go",
"diffmatchpatch.go",
"match.go",
"mathutil.go",
"operation_string.go",
"patch.go",
"stringutil.go",
],
importmap = "peridot.resf.org/vendor/github.com/sergi/go-diff/diffmatchpatch",
importpath = "github.com/sergi/go-diff/diffmatchpatch",
visibility = ["//visibility:public"],
)