diff options
Diffstat (limited to 'build')
-rw-r--r-- | build/common.gypi | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/build/common.gypi b/build/common.gypi index 0e66dba..be7a21e 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -554,6 +554,12 @@ # We use "POSIX" to refer to all non-Windows operating systems. ['OS=="win"', { 'sources/': [ ['exclude', '_posix\\.cc$'] ], + # turn on warnings for signed/unsigned mismatch on chromium code. + 'msvs_settings': { + 'VCCLCompilerTool': { + 'AdditionalOptions': ['/we4389'], + }, + }, }], # Though Skia is conceptually shared by Linux and Windows, # the only _skia files in our tree are Linux-specific. |