From 4dccfb192ab0b5b352744e65a084260eed33617b Mon Sep 17 00:00:00 2001 From: hai007 Date: Tue, 9 Jul 2024 17:02:29 -0700 Subject: [PATCH] Automated Code Change PiperOrigin-RevId: 650801511 --- connections/c/BUILD | 8 ++++---- connections/dart/BUILD | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/connections/c/BUILD b/connections/c/BUILD index 95994ec8..4a21e1e5 100644 --- a/connections/c/BUILD +++ b/connections/c/BUILD @@ -13,7 +13,7 @@ # limitations under the License. load("@bazel_skylib//:bzl_library.bzl", "bzl_library") -load("//third_party/lexan/build_defs:lexan.bzl", "lexan") +load("//third_party/cpptoolchains/windows_llvm/build_defs:windows.bzl", "windows") load("expand_version_template.bzl", "expand_version_template") package(default_visibility = [ @@ -53,7 +53,7 @@ expand_version_template( version = varref("VERSION"), ) -lexan.resource_files( +windows.resource_files( name = "resources", rc_files = [ ":version_expanded", @@ -100,7 +100,7 @@ cc_library( ) # Build with --config=lexan -lexan.cc_windows_dll( +windows.cc_windows_dll( name = "nearby_connections", tags = ["windows-dll"], deps = [ @@ -145,7 +145,7 @@ cc_library( ], ) -lexan.cc_windows_dll( +windows.cc_windows_dll( name = "nc_windows", srcs = [], compatible_with = ["//buildenv/target:non_prod"], diff --git a/connections/dart/BUILD b/connections/dart/BUILD index c8b83617..9fe21261 100644 --- a/connections/dart/BUILD +++ b/connections/dart/BUILD @@ -12,14 +12,14 @@ # See the License for the specific language governing permissions and # limitations under the License. -load("//third_party/lexan/build_defs:lexan.bzl", "lexan") +load("//third_party/cpptoolchains/windows_llvm/build_defs:windows.bzl", "windows") package(default_visibility = ["//location/nearby:__subpackages__"]) licenses(["notice"]) # Build with --config=lexan -lexan.cc_windows_dll( +windows.cc_windows_dll( name = "nc_windows_dart", srcs = [ "nc_adapter_dart.cc",