pulumi/pkg/codegen/cgstrings/BUILD.bazel

23 lines
550 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "cgstrings",
srcs = ["cgstrings.go"],
importpath = "github.com/pulumi/pulumi/pkg/v3/codegen/cgstrings",
visibility = ["//visibility:public"],
deps = ["//sdk/go/common/slice"],
)
alias(
name = "go_default_library",
actual = ":cgstrings",
visibility = ["//visibility:public"],
)
go_test(
name = "cgstrings_test",
srcs = ["cgstrings_test.go"],
embed = [":cgstrings"],
deps = ["@com_github_stretchr_testify//assert"],
)