Skip to content

Commit df2e46c

Browse files
authored
Fix third_party BUILD files for bazel @ HEAD (#1604)
These don't get linted because of their file names. We should fix that but this unblocks us
1 parent e884e4d commit df2e46c

File tree

7 files changed

+8
-2
lines changed

7 files changed

+8
-2
lines changed

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ bazel_dep(name = "rules_cc", version = "0.2.14")
1515
bazel_dep(name = "rules_shell", version = "0.3.0")
1616
bazel_dep(name = "platforms", version = "0.0.11")
1717
bazel_dep(name = "protobuf", version = "29.0", repo_name = "com_google_protobuf")
18-
bazel_dep(name = "nlohmann_json", version = "3.6.1", repo_name = "com_github_nlohmann_json")
18+
bazel_dep(name = "nlohmann_json", version = "3.12.0", repo_name = "com_github_nlohmann_json")
1919
bazel_dep(
2020
name = "swift_argument_parser",
2121
version = "1.3.1.2",

third_party/com_github_apple_swift_atomics/BUILD.overlay

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ load(
33
"swift_interop_hint",
44
)
55
load("@build_bazel_rules_swift//swift:swift_library.bzl", "swift_library")
6+
load("@rules_cc//cc:cc_library.bzl", "cc_library")
67

78
swift_library(
89
name = "Atomics",

third_party/com_github_apple_swift_nio/BUILD.overlay

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ load(
33
"swift_interop_hint",
44
)
55
load("@build_bazel_rules_swift//swift:swift_library.bzl", "swift_library")
6+
load("@rules_cc//cc:cc_library.bzl", "cc_library")
67

78
cc_library(
89
name = "CNIOAtomics",

third_party/com_github_apple_swift_nio_extras/BUILD.overlay

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
load( "@build_bazel_rules_swift//swift:swift_library.bzl", "swift_library")
1+
load("@build_bazel_rules_swift//swift:swift_library.bzl", "swift_library")
22

33
swift_library(
44
name = "NIOExtras",

third_party/com_github_apple_swift_nio_ssl/BUILD.overlay

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ load(
33
"swift_interop_hint",
44
)
55
load("@build_bazel_rules_swift//swift:swift_library.bzl", "swift_library")
6+
load("@rules_cc//cc:cc_library.bzl", "cc_library")
67

78
swift_library(
89
name = "NIOSSL",

third_party/com_github_grpc_grpc_swift/BUILD.overlay

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ load(
44
"swift_interop_hint",
55
)
66
load("@build_bazel_rules_swift//swift:swift_library.bzl", "swift_library")
7+
load("@rules_cc//cc:cc_library.bzl", "cc_library")
78

89
cc_library(
910
name = "CGRPCZlib",

third_party/com_github_nlohmann_json/BUILD.overlay

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
load("@rules_cc//cc:cc_library.bzl", "cc_library")
2+
13
package(default_visibility = ["//visibility:public"])
24

35
cc_library(

0 commit comments

Comments
 (0)