Skip to content

Commit c7ca69e

Browse files
Switching from ifdef to if
1 parent 2783761 commit c7ca69e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/controller/java/BUILD.gn

+2
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,8 @@ shared_library("jni") {
9898
]
9999

100100
deps += [ "${chip_root}/src/controller:nodatamodel" ]
101+
} else {
102+
defines += [ "CHIP_DEVICE_CONFIG_DYNAMIC_SERVER=0" ]
101103
}
102104

103105
if (matter_enable_java_compilation) {

src/controller/java/CHIPDeviceController-JNI.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
#include <system/SystemClock.h>
5959
#include <vector>
6060

61-
#ifdef CHIP_DEVICE_CONFIG_DYNAMIC_SERVER
61+
#if CHIP_DEVICE_CONFIG_DYNAMIC_SERVER
6262
#include <app/dynamic_server/AccessControl.h>
6363
#endif // CHIP_DEVICE_CONFIG_DYNAMIC_SERVER
6464

@@ -147,7 +147,7 @@ jint JNI_OnLoad(JavaVM * jvm, void * reserved)
147147
SuccessOrExit(err);
148148
#endif // JAVA_MATTER_CONTROLLER_TEST
149149

150-
#ifdef CHIP_DEVICE_CONFIG_DYNAMIC_SERVER
150+
#if CHIP_DEVICE_CONFIG_DYNAMIC_SERVER
151151
chip::app::dynamic_server::InitAccessControl();
152152
#endif // CHIP_DEVICE_CONFIG_DYNAMIC_SERVER
153153

0 commit comments

Comments
 (0)