rabbitmq-server/bazel/BUILD.x509

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
519 B
Plaintext
Raw Permalink Normal View History

2023-11-10 22:51:04 +08:00
load("@rules_erlang//:erlang_bytecode2.bzl", "erlc_opts")
filegroup(
name = "sources",
srcs = [
"mix.exs",
] + glob([
"LICENSE*",
"lib/**/*",
]),
visibility = ["//visibility:public"],
)
2023-11-10 22:51:04 +08:00
erlc_opts(
name = "erlc_opts",
values = select({
"@rules_erlang//:debug_build": [
"+debug_info",
],
"//conditions:default": [
"+debug_info",
"+deterministic",
],
}),
visibility = [":__subpackages__"],
)