Skip to content

Commit

Permalink
Fix Bootstrap error in Darwin platform (#34608)
Browse files Browse the repository at this point in the history
  • Loading branch information
joonhaengHeo authored and pull[bot] committed Oct 30, 2024
1 parent 3ae79fb commit 8799513
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/messaging/tests/java/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ shared_library("jni") {
defines = [ "JAVA_MATTER_CONTROLLER_TEST" ]
include_dirs = java_matter_controller_dependent_paths

deps += [ "${chip_root}/src/platform/Linux" ]
if (current_os == "mac") {
deps += [ "${chip_root}/src/platform/Darwin" ]
} else {
deps += [ "${chip_root}/src/platform/Linux" ]
}

cflags = [ "-Wno-unknown-pragmas" ]

Expand Down

0 comments on commit 8799513

Please sign in to comment.