rabbitmq-server/deps/rabbitmq_stream_common/BUILD.bazel

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

38 lines
656 B
Python
Raw Normal View History

load("@rules_erlang//:xref2.bzl", "xref")
load("@rules_erlang//:dialyze.bzl", "dialyze")
2021-06-11 22:58:17 +08:00
load(
"//:rabbitmq.bzl",
"RABBITMQ_DIALYZER_OPTS",
"assert_suites",
"rabbitmq_app",
"rabbitmq_suite",
2021-06-11 22:58:17 +08:00
)
APP_NAME = "rabbitmq_stream_common"
APP_DESCRIPTION = "RabbitMQ Stream Common"
rabbitmq_app(
2021-06-11 22:58:17 +08:00
app_description = APP_DESCRIPTION,
app_name = APP_NAME,
)
xref()
2021-06-11 22:58:17 +08:00
dialyze(
dialyzer_opts = RABBITMQ_DIALYZER_OPTS,
plt = "//:base_plt",
)
rabbitmq_suite(
name = "rabbit_stream_core_SUITE",
)
assert_suites()
alias(
name = "rabbitmq_stream_common",
actual = ":erlang_app",
visibility = ["//visibility:public"],
)