1
Fork 0
hermetic_cc_toolchain/test/BUILD

32 lines
682 B
Python
Raw Normal View History

load("//rules:rules_go.bzl", "go_binary")
2022-01-28 14:40:03 +02:00
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "hello_lib",
srcs = ["hello.go"],
cgo = True,
importpath = "github.com/motiejus/bazel-zig-cc/test",
visibility = ["//visibility:private"],
)
go_binary(
name = "hello",
2022-01-28 15:57:22 +02:00
embed = [":test_lib"],
static = "on",
visibility = ["//visibility:public"],
2021-04-10 01:05:01 +03:00
)
2022-01-28 14:40:03 +02:00
go_test(
2022-01-28 15:57:22 +02:00
name = "test_test",
2022-01-28 14:40:03 +02:00
srcs = ["hello_test.go"],
2022-01-28 15:57:22 +02:00
embed = [":test_lib"],
)
go_library(
name = "test_lib",
srcs = ["hello.go"],
cgo = True,
importpath = "git.sr.ht/~motiejus/bazel-zig-cc/test",
visibility = ["//visibility:private"],
2022-01-28 14:40:03 +02:00
)