From 2a9ed57efdf736788f8a7aa829e5465d790c9c66 Mon Sep 17 00:00:00 2001 From: David Zbarsky Date: Wed, 18 Feb 2026 10:39:47 -0500 Subject: [PATCH] [bazel] Add bzl_library for configure.bzl (#181582) --- utils/bazel/BUILD.bazel | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/utils/bazel/BUILD.bazel b/utils/bazel/BUILD.bazel index dd837093c62a..4e907cc8b7ba 100644 --- a/utils/bazel/BUILD.bazel +++ b/utils/bazel/BUILD.bazel @@ -2,4 +2,10 @@ # See https://llvm.org/LICENSE.txt for license information. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -# Required to reference .bzl files in this package +load("@bazel_skylib//:bzl_library.bzl", "bzl_library") + +bzl_library( + name = "configure", + srcs = ["configure.bzl"], + visibility = ["//visibility:public"], +)