Turn off warnings-as-error on 64bit windows build due to many size_t-related warnings.

git-svn-id: http://skia.googlecode.com/svn/trunk@7095 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
bsalomon@google.com 2013-01-08 20:40:22 +00:00
parent 50c79d886b
commit 1d03ba98d3

View File

@ -30,7 +30,6 @@
'msvs_settings': {
'VCCLCompilerTool': {
'WarningLevel': '1',
'WarnAsError': 'true',
'DebugInformationFormat': '3',
'AdditionalOptions': [ '/MP' ],
},
@ -89,10 +88,20 @@
},
'conditions' : [
['skia_arch_width == 64', {
'msvs_configuration_platform': 'x64'
'msvs_configuration_platform': 'x64',
'msvs_settings': {
'VCCLCompilerTool': {
'WarnAsError': 'false',
},
},
}],
['skia_arch_width == 32', {
'msvs_configuration_platform': 'Win32',
'msvs_settings': {
'VCCLCompilerTool': {
'WarnAsError': 'true',
},
},
}],
],
},