summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrentley Jones <github@brentleyjones.com>2023-10-17 09:21:10 -0500
committerGitHub <noreply@github.com>2023-10-17 14:21:10 +0000
commitd4fbadc7f5e2427817962b482e7bf78349375092 (patch)
tree8a66542692dae957c57198d5368a7741ed9700d4
parenta3b7ab1f1488b02374034a7d1f466bb95178c571 (diff)
downloadbazelbuild-apple_support-d4fbadc7f5e2427817962b482e7bf78349375092.tar.gz
Add `//config:platforms` `bzl_library` (#275)
Needed to bring rules_apple `bzl_library` dependencies up-to-date. Signed-off-by: Brentley Jones <github@brentleyjones.com>
-rw-r--r--configs/BUILD7
1 files changed, 7 insertions, 0 deletions
diff --git a/configs/BUILD b/configs/BUILD
index 6580050..22f2cfc 100644
--- a/configs/BUILD
+++ b/configs/BUILD
@@ -1,3 +1,4 @@
+load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
load("@bazel_skylib//lib:selects.bzl", "selects")
load(":platforms.bzl", "APPLE_PLATFORMS_CONSTRAINTS")
@@ -43,6 +44,12 @@ selects.config_setting_group(
],
)
+bzl_library(
+ name = "platforms",
+ srcs = ["platforms.bzl"],
+ visibility = ["//visibility:public"],
+)
+
# Consumed by bazel tests.
filegroup(
name = "for_bazel_tests",