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

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

Issue 1707813002: Add check so WIN_FASTLINK will be ignored on VS 2013 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changed from == 2015 to != 2013 Created 4 years, 10 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
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/compiler/BUILD.gn
diff --git a/build/config/compiler/BUILD.gn b/build/config/compiler/BUILD.gn
index b1afcca5f9230719bbdab5b4cae92e1f9ae6bcf9..c2461159e7ed32652ac7070468c497dd7f696bbd 100644
--- a/build/config/compiler/BUILD.gn
+++ b/build/config/compiler/BUILD.gn
@@ -1266,7 +1266,7 @@ config("symbols") {
} else {
cflags = [ "/Zi" ] # Produce PDB file, no edit and continue.
}
- if (is_win_fastlink) {
+ if (is_win_fastlink && visual_studio_version != "2013") {
# Tell VS 2015+ to create a PDB that references debug
# information in .obj and .lib files instead of copying
# it all. This flag is incompatible with /PROFILE
@@ -1289,7 +1289,7 @@ config("minimal_symbols") {
if (is_win) {
# Linker symbols for backtraces only.
cflags = []
- if (is_win_fastlink) {
+ if (is_win_fastlink && visual_studio_version != "2013") {
# Tell VS 2015+ to create a PDB that references debug
# information in .obj and .lib files instead of copying
# it all. This flag is incompatible with /PROFILE
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698