We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8414b93 commit 074161aCopy full SHA for 074161a
1 file changed
tests/strip_include_prefix/BUILD.bazel
@@ -12,14 +12,14 @@
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14
15
-load("@bazel_features//private:util.bzl", _bazel_version_ge = "ge")
+load("@bazel_features//:features.bzl", "bazel_features")
16
load("//cc:cc_library.bzl", "cc_library")
17
load("//cc:cc_test.bzl", "cc_test")
18
load("//cc/common:semantics.bzl", "STRIP_INCLUDE_PREFIX_APPLIES_TO_TEXTUAL_HEADERS")
19
20
licenses(["notice"])
21
22
-_SUPPORTED = _bazel_version_ge("9.0.0-pre.20250911") and STRIP_INCLUDE_PREFIX_APPLIES_TO_TEXTUAL_HEADERS
+_SUPPORTED = bazel_features.cc.cc_common_is_in_rules_cc and STRIP_INCLUDE_PREFIX_APPLIES_TO_TEXTUAL_HEADERS
23
24
cc_library(
25
name = "lib",
0 commit comments