Skip to content

Instantly share code, notes, and snippets.

@alexeagle
Created March 5, 2025 23:36
Show Gist options
  • Save alexeagle/418a36b190117d625d8d01e5f4d9e7f8 to your computer and use it in GitHub Desktop.
Save alexeagle/418a36b190117d625d8d01e5f4d9e7f8 to your computer and use it in GitHub Desktop.
load("@deps-test//my:rules.bzl", "x_lib")
x_lib(
name = "a_lib",
testonly = True,
srcs = ["a.json"],
deps = [
":b_lib",
"//lib:l_lib",
],
)
x_lib(
name = "b_lib",
testonly = False,
srcs = ["b.json"],
deps = ["//lib:l_lib"],
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment