summaryrefslogtreecommitdiffstats
path: root/build/config/win
diff options
context:
space:
mode:
authorbrettw <brettw@chromium.org>2015-07-20 16:52:22 -0700
committerCommit bot <commit-bot@chromium.org>2015-07-20 23:52:46 +0000
commit66e3feabd73622adccda533917c3441f6d0395a2 (patch)
tree4d25f92828b6e37e697edb592c038316fee8bec0 /build/config/win
parent33b3f55cbc185ec64fc3ed0bb1cdd50ed3b918f8 (diff)
downloadchromium_src-66e3feabd73622adccda533917c3441f6d0395a2.zip
chromium_src-66e3feabd73622adccda533917c3441f6d0395a2.tar.gz
chromium_src-66e3feabd73622adccda533917c3441f6d0395a2.tar.bz2
Add Syzygy support to Windows GN build.
BUG=511498 Review URL: https://codereview.chromium.org/1234033005 Cr-Commit-Position: refs/heads/master@{#339566}
Diffstat (limited to 'build/config/win')
-rw-r--r--build/config/win/BUILD.gn3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/config/win/BUILD.gn b/build/config/win/BUILD.gn
index 261a1ac4..7d8688ba 100644
--- a/build/config/win/BUILD.gn
+++ b/build/config/win/BUILD.gn
@@ -2,6 +2,7 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import("//build/config/sanitizers/sanitizers.gni")
import("//build/config/win/visual_studio_version.gni")
# Compiler setup for the Windows SDK. Applied to all targets.
@@ -51,7 +52,7 @@ config("sdk_link") {
"$visual_studio_path\VC\lib",
"$visual_studio_path\VC\atlmfc\lib",
]
- if (!is_asan) {
+ if (!is_syzyasan) {
ldflags += [ "/largeaddressaware" ]
}
}