Skip to content

Commit 5699172

Browse files
Fix build errors in test/starlark_tests/targets_under_test/macos (#2515)
* The `.../apple:macOSImported...` targets should be `:macOSImported...` * Without this change, the following command fails ``` bazel build test/starlark_tests/targets_under_test/macos:app_with_imported_dynamic_fmwk_with_dsym --macos_cpu=x86_64 ```
1 parent efcae11 commit 5699172

File tree

1 file changed

+4
-4
lines changed
  • test/starlark_tests/targets_under_test/macos

1 file changed

+4
-4
lines changed

test/starlark_tests/targets_under_test/macos/BUILD

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1314,8 +1314,8 @@ macos_application(
13141314
minimum_os_version = common.min_os_macos.baseline,
13151315
tags = common.fixture_tags,
13161316
deps = [
1317+
":macOSImportedDynamicFrameworkWithDebugInfo",
13171318
"//test/starlark_tests/resources:objc_main_lib",
1318-
"//test/starlark_tests/targets_under_test/apple:macOSImportedDynamicFrameworkWithDebugInfo",
13191319
],
13201320
)
13211321

@@ -2026,8 +2026,8 @@ macos_application(
20262026
minimum_os_version = common.min_os_macos.baseline,
20272027
tags = common.fixture_tags,
20282028
deps = [
2029+
":macOSImportedDynamicFrameworkWithBitcode",
20292030
"//test/starlark_tests/resources:objc_main_lib",
2030-
"//test/starlark_tests/targets_under_test/apple:macOSImportedDynamicFrameworkWithBitcode",
20312031
],
20322032
)
20332033

@@ -2041,9 +2041,9 @@ macos_application(
20412041
minimum_os_version = common.min_os_macos.baseline,
20422042
tags = common.fixture_tags,
20432043
deps = [
2044+
":macOSImportedDynamicFrameworkWithDebugInfo",
2045+
":macOSImportedDynamicFrameworkWithDsym",
20442046
"//test/starlark_tests/resources:objc_main_lib",
2045-
"//test/starlark_tests/targets_under_test/apple:macOSImportedDynamicFrameworkWithDebugInfo",
2046-
"//test/starlark_tests/targets_under_test/apple:macOSImportedDynamicFrameworkWithDsym",
20472047
],
20482048
)
20492049

0 commit comments

Comments
 (0)