Index: build/config/win/BUILD.gn |
diff --git a/build/config/win/BUILD.gn b/build/config/win/BUILD.gn |
index ffc5d1cb4daaaa4133f606769c639a7bc12486f4..e66bf995a25584694fceab9dc9e13754c2c249eb 100644 |
--- a/build/config/win/BUILD.gn |
+++ b/build/config/win/BUILD.gn |
@@ -85,9 +85,9 @@ config("common_linker_setup") { |
# Chrome.dll don't stick from one launch to the next. For this reason, we |
# turn ASLR off in debug builds. |
if (is_debug) { |
- ldflags += "/DYNAMICBASE:NO" |
+ ldflags += [ "/DYNAMICBASE:NO" ] |
} else { |
- ldflags += "/DYNAMICBASE" |
+ ldflags += [ "/DYNAMICBASE" ] |
} |
# Common libraries. |