From 5d00b05ff38db8b508f91d87485d76e865ebda3a Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Mon, 11 Sep 2023 10:12:29 -0700 Subject: [PATCH] Remove visionOS support from cc_test Having this here requires folks to update platforms which can be annoying until you're using bzlmod since it's a dependency of everything. This also isn't very important since in general when testing visionOS code you should be using a rule from rules_apple. --- src/main/starlark/builtins_bzl/common/cc/cc_test.bzl | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/starlark/builtins_bzl/common/cc/cc_test.bzl b/src/main/starlark/builtins_bzl/common/cc/cc_test.bzl index 3cd7bf0d7f3b8d..45a9a4658749af 100644 --- a/src/main/starlark/builtins_bzl/common/cc/cc_test.bzl +++ b/src/main/starlark/builtins_bzl/common/cc/cc_test.bzl @@ -102,7 +102,6 @@ def make_cc_test(with_aspects = False): "@" + paths.join(semantics.get_platforms_root(), "os:ios"), "@" + paths.join(semantics.get_platforms_root(), "os:macos"), "@" + paths.join(semantics.get_platforms_root(), "os:tvos"), - "@" + paths.join(semantics.get_platforms_root(), "os:visionos"), "@" + paths.join(semantics.get_platforms_root(), "os:watchos"), ], ),