Turn off optimization on VC debug builds.

http://codereview.appspot.com/4568052/


git-svn-id: http://skia.googlecode.com/svn/trunk@1488 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
bungeman@google.com 2011-06-03 15:48:17 +00:00
parent 76b8274242
commit 55bfd45d9a

View File

@ -10,6 +10,13 @@
'VCLinkerTool': { 'VCLinkerTool': {
'GenerateDebugInformation': 'true', 'GenerateDebugInformation': 'true',
}, },
'VCCLCompilerTool': {
#0 Disabled (/Od)
#1 Minimize Size (/O1)
#2 Maximize Speed (/O2)
#3 Full Optimization (/Ox)
'Optimization': '0',
},
}, },
}, },
'Release': { 'Release': {