blob: e9a7ddee2742c690a0e33ff7a6d96dfa9b6c1a7e [file] [log] [blame]
load("@build_bazel_rules_apple//apple:resources.bzl", "apple_resource_group")
licenses(["notice"])
package(
default_applicable_licenses = ["//:license"],
default_visibility = ["//:__subpackages__"],
)
exports_files(
["WORKSPACE"],
)
genrule(
name = "aspect_build",
srcs = [":tulsi/aspect.BUILD"],
outs = ["tulsi/BUILD"],
cmd = "cp $< $@",
visibility = ["//visibility:private"],
)
apple_resource_group(
name = "tulsi",
resources = [":aspect_build"],
structured_resources = [
"tulsi/tulsi_aspects.bzl",
"tulsi/tulsi_aspects_paths.bzl",
"tulsi/tulsi_aspects_propagation_attrs.bzl",
],
)
filegroup(
name = "for_bazel_tests",
testonly = 1,
srcs = [
"BUILD",
"tulsi/tulsi_aspects.bzl",
"tulsi/tulsi_aspects_paths.bzl",
"tulsi/tulsi_aspects_propagation_attrs.bzl",
],
)