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