We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78adc4d commit 3a99423Copy full SHA for 3a99423
src/messaging/tests/java/BUILD.gn
@@ -36,7 +36,11 @@ shared_library("jni") {
36
defines = [ "JAVA_MATTER_CONTROLLER_TEST" ]
37
include_dirs = java_matter_controller_dependent_paths
38
39
- deps += [ "${chip_root}/src/platform/Linux" ]
+ if (current_os == "mac") {
40
+ deps += [ "${chip_root}/src/platform/Darwin" ]
41
+ } else {
42
+ deps += [ "${chip_root}/src/platform/Linux" ]
43
+ }
44
45
cflags = [ "-Wno-unknown-pragmas" ]
46
0 commit comments