github.com/lestrrat-go/jwx/v2@v2.0.21/internal/base64/BUILD.bazel (about) 1 load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") 2 3 go_library( 4 name = "base64", 5 srcs = ["base64.go"], 6 importpath = "github.com/lestrrat-go/jwx/v2/internal/base64", 7 visibility = ["//:__subpackages__"], 8 ) 9 10 go_test( 11 name = "base64_test", 12 srcs = ["base64_test.go"], 13 embed = [":base64"], 14 deps = ["@com_github_stretchr_testify//assert"], 15 ) 16 17 alias( 18 name = "go_default_library", 19 actual = ":base64", 20 visibility = ["//:__subpackages__"], 21 )