diff options
Diffstat (limited to 'third_party/libxml/libxml.gyp')
-rw-r--r-- | third_party/libxml/libxml.gyp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/third_party/libxml/libxml.gyp b/third_party/libxml/libxml.gyp index ec572bd..6f8b8e1 100644 --- a/third_party/libxml/libxml.gyp +++ b/third_party/libxml/libxml.gyp @@ -228,7 +228,8 @@ # Disable unimportant 'unused variable' warning, and # signed/unsigned comparison warning. The signed/unsigned (4101) # is fixed upstream and can be removed eventually. - 'msvs_disabled_warnings': [ 4018, 4101 ], + # TODO(jschuh): http://crbug.com/167187 size_t -> int + 'msvs_disabled_warnings': [ 4018, 4101, 4267 ], }, { # else: OS!="win" 'product_name': 'xml2', }], |