194 lines
3.8 KiB
Python
194 lines
3.8 KiB
Python
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
|
|
load("//lib/private:stamping.bzl", "stamp_build_setting")
|
|
|
|
# Ensure that users building their own rules can dep on our bzl_library targets for their stardoc
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
exports_files(
|
|
glob(["*.bzl"]),
|
|
visibility = [
|
|
"//docs:__pkg__",
|
|
"//lib:__subpackages__",
|
|
],
|
|
)
|
|
|
|
# Macro that creates targets enabling the use of `--stamp` in Starlark rules
|
|
stamp_build_setting(name = "stamp")
|
|
|
|
toolchain_type(
|
|
name = "jq_toolchain_type",
|
|
)
|
|
|
|
toolchain_type(
|
|
name = "yq_toolchain_type",
|
|
)
|
|
|
|
bzl_library(
|
|
name = "docs",
|
|
srcs = ["docs.bzl"],
|
|
deps = ["//lib/private:docs"],
|
|
)
|
|
|
|
bzl_library(
|
|
name = "expand_make_vars",
|
|
srcs = ["expand_make_vars.bzl"],
|
|
deps = [
|
|
"//lib/private:expand_locations",
|
|
"//lib/private:expand_template",
|
|
"//lib/private:expand_variables",
|
|
],
|
|
)
|
|
|
|
bzl_library(
|
|
name = "params_file",
|
|
srcs = ["params_file.bzl"],
|
|
deps = ["//lib/private:params_file"],
|
|
)
|
|
|
|
bzl_library(
|
|
name = "paths",
|
|
srcs = ["paths.bzl"],
|
|
deps = ["//lib/private:paths"],
|
|
)
|
|
|
|
bzl_library(
|
|
name = "utils",
|
|
srcs = ["utils.bzl"],
|
|
deps = ["//lib/private:utils"],
|
|
)
|
|
|
|
bzl_library(
|
|
name = "jq",
|
|
srcs = ["jq.bzl"],
|
|
visibility = ["//visibility:public"],
|
|
deps = ["//lib/private:jq"],
|
|
)
|
|
|
|
bzl_library(
|
|
name = "directory_path",
|
|
srcs = ["directory_path.bzl"],
|
|
deps = ["//lib/private:directory_path"],
|
|
)
|
|
|
|
bzl_library(
|
|
name = "output_files",
|
|
srcs = ["output_files.bzl"],
|
|
deps = ["//lib/private:output_files"],
|
|
)
|
|
|
|
bzl_library(
|
|
name = "copy_file",
|
|
srcs = ["copy_file.bzl"],
|
|
deps = ["//lib/private:copy_file"],
|
|
)
|
|
|
|
bzl_library(
|
|
name = "copy_directory",
|
|
srcs = ["copy_directory.bzl"],
|
|
deps = ["//lib/private:copy_directory"],
|
|
)
|
|
|
|
bzl_library(
|
|
name = "copy_to_directory",
|
|
srcs = ["copy_to_directory.bzl"],
|
|
deps = ["//lib/private:copy_to_directory"],
|
|
)
|
|
|
|
bzl_library(
|
|
name = "copy_to_bin",
|
|
srcs = ["copy_to_bin.bzl"],
|
|
deps = ["//lib/private:copy_to_bin"],
|
|
)
|
|
|
|
bzl_library(
|
|
name = "write_source_files",
|
|
srcs = ["write_source_files.bzl"],
|
|
deps = [
|
|
":diff_test",
|
|
":utils",
|
|
"//lib/private:fail_with_message_test",
|
|
"//lib/private:write_source_file",
|
|
],
|
|
)
|
|
|
|
bzl_library(
|
|
name = "diff_test",
|
|
srcs = ["diff_test.bzl"],
|
|
deps = ["//lib/private:diff_test"],
|
|
)
|
|
|
|
bzl_library(
|
|
name = "run_binary",
|
|
srcs = ["run_binary.bzl"],
|
|
deps = ["//lib/private:run_binary"],
|
|
)
|
|
|
|
bzl_library(
|
|
name = "repo_utils",
|
|
srcs = ["repo_utils.bzl"],
|
|
deps = [
|
|
"//lib/private:patch",
|
|
"//lib/private:repo_utils",
|
|
],
|
|
)
|
|
|
|
bzl_library(
|
|
name = "yq",
|
|
srcs = ["yq.bzl"],
|
|
deps = ["//lib/private:yq"],
|
|
)
|
|
|
|
bzl_library(
|
|
name = "glob_match",
|
|
srcs = ["glob_match.bzl"],
|
|
deps = ["//lib/private:glob_match"],
|
|
)
|
|
|
|
bzl_library(
|
|
name = "host_repo",
|
|
srcs = ["host_repo.bzl"],
|
|
deps = ["//lib/private:host_repo"],
|
|
)
|
|
|
|
bzl_library(
|
|
name = "stamping",
|
|
srcs = ["stamping.bzl"],
|
|
deps = ["//lib/private:stamping"],
|
|
)
|
|
|
|
bzl_library(
|
|
name = "testing",
|
|
srcs = ["testing.bzl"],
|
|
deps = [
|
|
":utils",
|
|
"@bazel_skylib//rules:write_file",
|
|
],
|
|
)
|
|
|
|
bzl_library(
|
|
name = "extensions",
|
|
srcs = ["extensions.bzl"],
|
|
deps = ["@aspect_bazel_lib//lib:repositories"],
|
|
)
|
|
|
|
bzl_library(
|
|
name = "repositories",
|
|
srcs = ["repositories.bzl"],
|
|
deps = [
|
|
"//lib/private:jq_toolchain",
|
|
"//lib/private:yq_toolchain",
|
|
"@bazel_tools//tools/build_defs/repo:http.bzl",
|
|
"@bazel_tools//tools/build_defs/repo:utils.bzl",
|
|
],
|
|
)
|
|
|
|
bzl_library(
|
|
name = "transitions",
|
|
srcs = ["transitions.bzl"],
|
|
)
|
|
|
|
bzl_library(
|
|
name = "windows_utils",
|
|
srcs = ["windows_utils.bzl"],
|
|
)
|