fix missing bracket

This commit is contained in:
Alexander Frick 2024-11-23 15:27:37 -06:00
parent 1a91e52f7e
commit e757c2322b
2 changed files with 2 additions and 2 deletions

View file

@ -3465,7 +3465,7 @@ config("minimal_symbols") {
# names in the final debug information.
config("no_symbols") {
if (is_win) {
if (current_cpu == "arm64" || target_cpu == "arm64")
if (current_cpu == "arm64" || target_cpu == "arm64") {
ldflags = [ "/DEBUG" ]
} else {
ldflags = [ "/DEBUG:NONE" ]

View file

@ -3465,7 +3465,7 @@ config("minimal_symbols") {
# names in the final debug information.
config("no_symbols") {
if (is_win) {
if (current_cpu == "arm64" || target_cpu == "arm64")
if (current_cpu == "arm64" || target_cpu == "arm64") {
ldflags = [ "/DEBUG" ]
} else {
ldflags = [ "/DEBUG:NONE" ]