2
0
Fork 0
mirror of https://github.com/bazel-contrib/bazel-lib synced 2024-11-25 11:32:33 +00:00
bazel-lib/lib/directory_path.bzl
Greg Magolan 3b93ee0baa
Add DefaultOutputPathInfo provider and update write_source_files to accept it (#48)
Also update write_source_files to accept DirectoryPathInfo
2022-03-14 17:33:52 -07:00

17 lines
524 B
Python

"""Rule and corresponding provider that joins a label pointing to a TreeArtifact
with a path nested within that directory
"""
load(
"//lib/private:directory_path.bzl",
_DirectoryPathInfo = "DirectoryPathInfo",
_directory_path = "directory_path",
_make_directory_path = "make_directory_path",
_make_directory_paths = "make_directory_paths",
)
directory_path = _directory_path
make_directory_path = _make_directory_path
make_directory_paths = _make_directory_paths
DirectoryPathInfo = _DirectoryPathInfo