Skip to content

Commit

Permalink
Fix wifi build
Browse files Browse the repository at this point in the history
  • Loading branch information
jmartinez-silabs committed Aug 13, 2022
1 parent d2cb804 commit a9fc5a3
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions third_party/silabs/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,14 @@ group("efr32_sdk") {
public_deps = [ efr32_sdk_target ]
}

group("openthread_cli") {
if (use_silabs_thread_lib == false) {
if (chip_openthread_ftd) {
public_deps = [ "${sl_openthread_root}:libopenthread-cli-ftd" ]
} else {
public_deps = [ "${sl_openthread_root}:libopenthread-cli-mtd" ]
if (chip_enable_openthread) {
group("openthread_cli") {
if (use_silabs_thread_lib == false) {
if (chip_openthread_ftd) {
public_deps = [ "${sl_openthread_root}:libopenthread-cli-ftd" ]
} else {
public_deps = [ "${sl_openthread_root}:libopenthread-cli-mtd" ]
}
}
}
}
Expand Down

0 comments on commit a9fc5a3

Please sign in to comment.