Skip to content

Commit

Permalink
Add missing bzl_library dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Brentley Jones <[email protected]>
  • Loading branch information
brentleyjones committed Oct 17, 2023
1 parent d0180e6 commit 1cc422b
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 1 deletion.
7 changes: 6 additions & 1 deletion apple/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ bzl_library(
name = "apple",
srcs = ["apple.bzl"],
deps = [
"//apple:apple_static_library",
"//apple/internal:apple_framework_import",
"//apple/internal:apple_universal_binary",
"//apple/internal:apple_xcframework_import",
Expand Down Expand Up @@ -126,7 +127,11 @@ bzl_library(
bzl_library(
name = "ios.doc",
srcs = ["ios.doc.bzl"],
deps = ["ios"],
deps = [
":ios",
"//apple/testing/default_runner:ios_test_runner",
"//apple/testing/default_runner:ios_xctestrun_runner",
],
)

bzl_library(
Expand Down
8 changes: 8 additions & 0 deletions apple/internal/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,7 @@ bzl_library(
":cc_info_support",
":entitlements_support",
":features_support",
":framework_import_support",
":linking_support",
":outputs",
":partials",
Expand Down Expand Up @@ -373,6 +374,7 @@ bzl_library(
":codesigning_support",
":entitlements_support",
":features_support",
":framework_import_support",
":linking_support",
":outputs",
":partials",
Expand Down Expand Up @@ -633,6 +635,7 @@ bzl_library(
deps = [
"//apple/build_settings",
"@bazel_skylib//lib:dicts",
"@build_bazel_apple_support//configs:platforms",
],
)

Expand All @@ -649,6 +652,7 @@ bzl_library(
":cc_info_support",
":entitlements_support",
":features_support",
":framework_import_support",
":linking_support",
":outputs",
":partials",
Expand Down Expand Up @@ -683,6 +687,7 @@ bzl_library(
":bundling_support",
":entitlements_support",
":features_support",
":framework_import_support",
":linking_support",
":outputs",
":partials",
Expand All @@ -693,6 +698,7 @@ bzl_library(
":rule_attrs",
":rule_factory",
":rule_support",
":run_support",
":stub_support",
":swift_support",
"//apple:providers",
Expand All @@ -716,6 +722,7 @@ bzl_library(
":bundling_support",
":entitlements_support",
":features_support",
":framework_import_support",
":linking_support",
":outputs",
":partials",
Expand Down Expand Up @@ -791,6 +798,7 @@ bzl_library(
],
deps = [
"//apple:providers",
"//apple/internal/providers:apple_debug_info",
],
)

Expand Down
10 changes: 10 additions & 0 deletions apple/testing/default_runner/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,16 @@ licenses(["notice"])
bzl_library(
name = "ios_test_runner",
srcs = ["ios_test_runner.bzl"],
visibility = ["//apple:__pkg__"],
deps = [
"//apple:providers",
],
)

bzl_library(
name = "ios_xctestrun_runner",
srcs = ["ios_xctestrun_runner.bzl"],
visibility = ["//apple:__pkg__"],
deps = [
"//apple:providers",
],
Expand Down

0 comments on commit 1cc422b

Please sign in to comment.