"""Contains the macro bazel_features_repos to install internal repositories.""" | |
load(":globals.bzl", "GLOBALS", "LEGACY_GLOBALS") | |
load(":globals_repo.bzl", "globals_repo") | |
load(":version_repo.bzl", "version_repo") | |
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe") | |
def bazel_features_repos(): | |
maybe( | |
version_repo, | |
name = "bazel_features_version" | |
) | |
maybe( | |
globals_repo, | |
name = "bazel_features_globals", | |
globals = GLOBALS, | |
legacy_globals = LEGACY_GLOBALS, | |
) |