-
Notifications
You must be signed in to change notification settings - Fork 35
/
filegroup.bzl
47 lines (40 loc) · 1.65 KB
/
filegroup.bzl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This source code is licensed under both the MIT license found in the
# LICENSE-MIT file in the root directory of this source tree and the Apache
# License, Version 2.0 found in the LICENSE-APACHE file in the root directory
# of this source tree.
load("@prelude//:artifacts.bzl", "ArtifactGroupInfo")
def filegroup_impl(ctx):
"""
Creates a directory that contains links to the list of srcs
The output is a directory that uses `name` for its name, and each symlink
is based on the `short_path` for the provided `src`.
"""
if type(ctx.attrs.srcs) == type({}):
srcs = ctx.attrs.srcs
else:
srcs = {}
for src in ctx.attrs.srcs:
existing = srcs.get(src.short_path)
if existing != None and existing != src:
soft_error(
"starlark_filegroup_duplicate_srcs",
"filegroup {} has srcs with duplicate names: {} and {}".format(ctx.label, src, srcs[src.short_path]),
quiet = True,
stack = False,
)
srcs[src.short_path] = src
# It seems that buck1 always copies, and that's important for Python rules
if ctx.attrs.copy:
output = ctx.actions.copied_dir(ctx.label.name, srcs)
else:
output = ctx.actions.symlinked_dir(ctx.label.name, srcs)
if type(ctx.attrs.srcs) == type([]):
artifacts = ctx.attrs.srcs
else:
artifacts = [output.project(name, hide_prefix = True) for name in srcs]
return [
DefaultInfo(default_output = output),
ArtifactGroupInfo(artifacts = artifacts),
]