Skip to content

Commit

Permalink
Add missing bzl_library targets (#940)
Browse files Browse the repository at this point in the history
  • Loading branch information
brentleyjones authored Nov 29, 2022
1 parent 71cd817 commit e0009f9
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions swift/internal/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,12 @@ bzl_library(
deps = ["@bazel_skylib//lib:paths"],
)

bzl_library(
name = "env_expansion",
srcs = ["env_expansion.bzl"],
visibility = ["//swift:__subpackages__"],
)

bzl_library(
name = "features",
srcs = ["features.bzl"],
Expand Down Expand Up @@ -176,6 +182,7 @@ bzl_library(
deps = [
":compiling",
":derived_files",
":env_expansion",
":feature_names",
":linking",
":providers",
Expand Down Expand Up @@ -227,6 +234,7 @@ bzl_library(
":proto_gen_utils",
":providers",
":swift_common",
":transitions",
":utils",
"@bazel_skylib//lib:dicts",
"@rules_proto//proto:defs",
Expand Down Expand Up @@ -298,6 +306,7 @@ bzl_library(
deps = [
":providers",
":swift_protoc_gen_aspect",
":transitions",
"@rules_proto//proto:defs",
],
)
Expand Down Expand Up @@ -360,6 +369,12 @@ bzl_library(
],
)

bzl_library(
name = "transitions",
srcs = ["transitions.bzl"],
visibility = ["//swift:__subpackages__"],
)

bzl_library(
name = "utils",
srcs = ["utils.bzl"],
Expand Down

0 comments on commit e0009f9

Please sign in to comment.