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

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

Issue 2495643002: Make /fastlink builds as optimized as non-/fastlink builds (Closed)
Patch Set: Fix is_syzyasan logic per code review comments Created 4 years, 1 month 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 | « no previous file | build/config/win/BUILD.gn » ('j') | 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 4197228e9cc0245df2f030c1f106504140455001..20c17642ed44c5a6559994ff3d404087ff6dbe79 100644
--- a/build/config/compiler/BUILD.gn
+++ b/build/config/compiler/BUILD.gn
@@ -1569,14 +1569,7 @@ config("minimal_symbols") {
if (is_win) {
# Linker symbols for backtraces only.
cflags = []
- if (is_win_fastlink) {
- # 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
- ldflags = [ "/DEBUG:FASTLINK" ]
- } else {
- ldflags = [ "/DEBUG" ]
- }
+ ldflags = [ "/DEBUG" ]
} else {
if (is_android) {
# Breakpad can't handle DWARF 4 symbols properly yet, so use DWARF 3
« no previous file with comments | « no previous file | build/config/win/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698