18 lines
475 B
Python
18 lines
475 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["urlesc.go"],
|
|
importmap = "github.com/jetstack/cert-manager/vendor/github.com/PuerkitoBio/urlesc",
|
|
importpath = "github.com/PuerkitoBio/urlesc",
|
|
tags = ["manual"],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["urlesc_test.go"],
|
|
embed = [":go_default_library"],
|
|
tags = ["manual"],
|
|
)
|