diff --git a/src/BUILD.gn b/src/BUILD.gn index a7c454179e28f7..15e26a87cd104b 100644 --- a/src/BUILD.gn +++ b/src/BUILD.gn @@ -55,13 +55,12 @@ if (chip_build_tests) { "${chip_root}/src/transport/retransmit/tests", ] - if (current_os != "mbed") - { + if (current_os != "mbed") { deps += [ - "${chip_root}/src/lib/dnssd/minimal_mdns/core/tests", - "${chip_root}/src/lib/dnssd/minimal_mdns/responders/tests", - "${chip_root}/src/lib/dnssd/minimal_mdns/tests", - "${chip_root}/src/lib/dnssd/tests" + "${chip_root}/src/lib/dnssd/minimal_mdns/core/tests", + "${chip_root}/src/lib/dnssd/minimal_mdns/responders/tests", + "${chip_root}/src/lib/dnssd/minimal_mdns/tests", + "${chip_root}/src/lib/dnssd/tests", ] } diff --git a/src/platform/tests/BUILD.gn b/src/platform/tests/BUILD.gn index da58338fc26aee..f56ea9ce816700 100644 --- a/src/platform/tests/BUILD.gn +++ b/src/platform/tests/BUILD.gn @@ -75,7 +75,8 @@ if (chip_device_platform != "none" && chip_device_platform != "fake") { tests = [ "TestCHIPoBLEStackMgr" ] } - if (current_os == "zephyr" || current_os == "android" || current_os == "mbed") { + if (current_os == "zephyr" || current_os == "android" || + current_os == "mbed") { test_sources += [ "TestKeyValueStoreMgr.cpp" ] }