Skip to content

Commit

Permalink
Fix build errors in test/starlark_tests/targets_under_test/macos (#2515)
Browse files Browse the repository at this point in the history
* 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
```
  • Loading branch information
hiroyuki-komatsu authored Aug 25, 2024
1 parent efcae11 commit 5699172
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/starlark_tests/targets_under_test/macos/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -1314,8 +1314,8 @@ macos_application(
minimum_os_version = common.min_os_macos.baseline,
tags = common.fixture_tags,
deps = [
":macOSImportedDynamicFrameworkWithDebugInfo",
"//test/starlark_tests/resources:objc_main_lib",
"//test/starlark_tests/targets_under_test/apple:macOSImportedDynamicFrameworkWithDebugInfo",
],
)

Expand Down Expand Up @@ -2026,8 +2026,8 @@ macos_application(
minimum_os_version = common.min_os_macos.baseline,
tags = common.fixture_tags,
deps = [
":macOSImportedDynamicFrameworkWithBitcode",
"//test/starlark_tests/resources:objc_main_lib",
"//test/starlark_tests/targets_under_test/apple:macOSImportedDynamicFrameworkWithBitcode",
],
)

Expand All @@ -2041,9 +2041,9 @@ macos_application(
minimum_os_version = common.min_os_macos.baseline,
tags = common.fixture_tags,
deps = [
":macOSImportedDynamicFrameworkWithDebugInfo",
":macOSImportedDynamicFrameworkWithDsym",
"//test/starlark_tests/resources:objc_main_lib",
"//test/starlark_tests/targets_under_test/apple:macOSImportedDynamicFrameworkWithDebugInfo",
"//test/starlark_tests/targets_under_test/apple:macOSImportedDynamicFrameworkWithDsym",
],
)

Expand Down

0 comments on commit 5699172

Please sign in to comment.