Index: build/common.gypi |
diff --git a/build/common.gypi b/build/common.gypi |
index 515cfc4ad4b2e81feffee7dffb532162b9a84b0b..3aa7a2c4cd02cb199f0ed00c854f7ad30e0927d0 100644 |
--- a/build/common.gypi |
+++ b/build/common.gypi |
@@ -1755,9 +1755,12 @@ |
['OS=="win"', { |
'msvs_settings': { |
'VCLinkerTool': { |
- 'GenerateDebugInformation': 'false', |
+ # This tells the linker to generate .pdbs, so that |
+ # we can get meaningful stack traces. |
+ 'GenerateDebugInformation': 'true', |
}, |
'VCCLCompilerTool': { |
+ # No debug info to be generated by compiler. |
'DebugInformationFormat': '0', |
}, |
}, |