mirror of https://github.com/pulumi/pulumi.git
23 lines
550 B
Python
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"],
|
|
)
|
|
|
|
go_test(
|
|
name = "cgstrings_test",
|
|
srcs = ["cgstrings_test.go"],
|
|
embed = [":cgstrings"],
|
|
deps = ["@com_github_stretchr_testify//assert"],
|
|
)
|
|
|
|
alias(
|
|
name = "go_default_library",
|
|
actual = ":cgstrings",
|
|
visibility = ["//visibility:public"],
|
|
)
|