Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(79)

Unified Diff: build/config/win/BUILD.gn

Issue 1368223002: [GN]: BUILD file housecleaning (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: build/config/win/BUILD.gn
diff --git a/build/config/win/BUILD.gn b/build/config/win/BUILD.gn
index a93ed30daa3cfa23bc18911b193eb64dbccf1482..23a30e694ef9e2af6b80bac27c5e904311ab1658 100644
--- a/build/config/win/BUILD.gn
+++ b/build/config/win/BUILD.gn
@@ -129,6 +129,14 @@ config("sdk") {
# This is required for ATL to use XP-safe versions of its functions.
"_USING_V110_SDK71_",
]
+
+ asmflags = [
+ # When /SAFESEH is specified, the linker will only produce an image if it
+ # can also produce a table of the image's safe exception handlers. This
+ # table specifies for the operating system which exception handlers are
+ # valid for the image.
+ "/SAFESEH",
brettw 2015/09/28 19:44:52 This didn't seem to come from anywhere else. I'm a
Bons 2015/09/28 20:15:39 It came from the windows toolchain config where it
+ ]
}
# Sets the default Windows build version. This is separated because some

Powered by Google App Engine
This is Rietveld 408576698