1
hermetic_cc_toolchain/test/BUILD
Motiejus Jakštys 19c7d77ac0 [test] remove DataDog/zstd
only one test cgo dependency is quite enough
2021-11-07 12:39:34 +02:00

19 lines
457 B
Python

load("//rules:rules_go.bzl", "go_binary")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "hello_lib",
srcs = ["hello.go"],
cgo = True,
importpath = "github.com/motiejus/bazel-zig-cc/test",
visibility = ["//visibility:private"],
deps = ["@com_github_mattn_go_sqlite3//:go-sqlite3"],
)
go_binary(
name = "hello",
embed = [":hello_lib"],
static = "on",
visibility = ["//visibility:public"],
)