Skip to content

Commit

Permalink
Restyled by gn
Browse files Browse the repository at this point in the history
  • Loading branch information
restyled-commits authored and mspang committed Dec 15, 2023
1 parent 3b5b963 commit 24d58f3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions src/lwip/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,11 @@ buildconfig_header("lwip_buildconfig") {
if (current_os == "zephyr" || current_os == "mbed") {
group("lwip") {
}
} else if (get_path_info(lwip_root, "abspath") != get_path_info("${chip_root}/third_party/lwip", "abspath")) {
} else if (get_path_info(lwip_root, "abspath") !=
get_path_info("${chip_root}/third_party/lwip", "abspath")) {
# Redirect old dependencies on ${chip_root}/src/lwip onto ${lwip_root}:lwip
group("lwip") {
public_deps = ["${lwip_root}:lwip"]
public_deps = [ "${lwip_root}:lwip" ]
}
} else if (lwip_platform == "external" || lwip_platform == "mw320") {
group("lwip") {
Expand Down Expand Up @@ -147,7 +148,7 @@ if (current_os == "zephyr" || current_os == "mbed") {
}

group("lwip") {
public_deps = [":legacy_lwip"]
public_deps = [ ":legacy_lwip" ]
}
} else if (lwip_platform == "bl602") {
group("lwip") {
Expand Down Expand Up @@ -250,6 +251,6 @@ if (current_os == "zephyr" || current_os == "mbed") {
}

group("lwip") {
public_deps = [":legacy_lwip"]
public_deps = [ ":legacy_lwip" ]
}
}
2 changes: 1 addition & 1 deletion src/platform/mt793x/lwip/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,5 @@ lwip_target("mt793x_lwip") {
}

group("lwip") {
public_deps = [":mt793x_lwip"]
public_deps = [ ":mt793x_lwip" ]
}
2 changes: 1 addition & 1 deletion third_party/silabs/silabs_lwip/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@ lwip_target("silabs_lwip") {
}

group("lwip") {
public_deps = [":silabs_lwip"]
public_deps = [ ":silabs_lwip" ]
}

0 comments on commit 24d58f3

Please sign in to comment.