blob: ab2b50615ab81653601454ce6e309e462c03804f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
load("//:rabbitmq.bzl", "all_plugins")
load(":erlang_ls.bzl", "deps_symlinks")
deps_symlinks(
name = "symlink_deps_for_erlang_ls",
testonly = True,
apps = all_plugins(
rabbitmq_workspace = "",
) + [
"//deps/rabbitmq_ct_helpers:erlang_app",
"//deps/rabbitmq_ct_client_helpers:erlang_app",
],
dest = "extra_deps", # must also be listed in .bazelignore
tags = ["local"],
)
|