blob: 72a4b9cd91bcb74d010b8caa36349097649ff76c [file] [log] [blame]
load("//:bzl_library.bzl", "bzl_library")
load(":bzl_library_test.bzl", "bzl_library_test")
filegroup(
name = "a",
srcs = ["testdata/a.bzl"],
)
bzl_library(
name = "b",
srcs = ["testdata/b.bzl"],
)
bzl_library(
name = "c",
srcs = ["testdata/c.bzl"],
deps = [
":a",
":b",
],
)
bzl_library_test(
name = "bzl_library_test",
expected_srcs = ["testdata/c.bzl"],
expected_transitive_srcs = [
"testdata/a.bzl",
"testdata/b.bzl",
"testdata/c.bzl",
],
target_under_test = ":c",
)