Skip to content

Commit

Permalink
Include Tizen check only if BLE is disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
arkq committed May 10, 2023
1 parent 44258cb commit 0c826f1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,11 @@ if (current_toolchain != "${dir_pw_toolchain}/default:default") {
deps = [ "${chip_root}/src/test_driver/tizen:check(${chip_root}/build/toolchain/tizen:tizen_arm)" ]
}

extra_check_deps += [ ":check:tizen" ]
# Include Tizen check target only if BLE is not enabled, since
# currently, QEMU-based Tizen does not support Bluetooth.
if (!chip_config_network_layer_ble) {
extra_check_deps += [ ":check:tizen" ]
}
}

if (enable_mw320_shell_build) {
Expand Down

0 comments on commit 0c826f1

Please sign in to comment.