39 lines
908 B
Python
39 lines
908 B
Python
"""
|
|
Test rule to create a pkg with DefaultInfo and OtherInfo files
|
|
"""
|
|
|
|
load("@aspect_bazel_lib//lib:copy_to_directory.bzl", "copy_to_directory_action")
|
|
load(":other_info.bzl", "OtherInfo")
|
|
|
|
_attrs = {
|
|
"srcs": attr.label_list(allow_files = True),
|
|
"out": attr.string(mandatory = True),
|
|
}
|
|
|
|
def _pkg_impl(ctx):
|
|
dst = ctx.actions.declare_directory(ctx.attr.out)
|
|
|
|
additional_files_depsets = []
|
|
|
|
# include files from OtherInfo of srcs
|
|
for src in ctx.attr.srcs:
|
|
if OtherInfo in src:
|
|
additional_files_depsets.append(src[OtherInfo].files)
|
|
|
|
copy_to_directory_action(
|
|
ctx,
|
|
srcs = ctx.attr.srcs,
|
|
dst = dst,
|
|
additional_files = depset(transitive = additional_files_depsets),
|
|
)
|
|
|
|
return [
|
|
DefaultInfo(files = depset([dst])),
|
|
]
|
|
|
|
pkg = rule(
|
|
implementation = _pkg_impl,
|
|
attrs = _attrs,
|
|
provides = [DefaultInfo],
|
|
)
|