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