mirror of
https://github.com/Alex313031/thorium.git
synced 2025-01-09 11:27:32 -03:00
fix missing bracket
This commit is contained in:
parent
1a91e52f7e
commit
e757c2322b
2 changed files with 2 additions and 2 deletions
|
@ -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" ]
|
||||
|
|
|
@ -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" ]
|
||||
|
|
Loading…
Reference in a new issue