| Index: third_party/libxml/BUILD.gn
|
| diff --git a/third_party/libxml/BUILD.gn b/third_party/libxml/BUILD.gn
|
| index 1f10dee5889d545ecb672337e083253c172e51bb..58a5f1c1040d3ae8ad8909da52d7d56c84c4c191 100644
|
| --- a/third_party/libxml/BUILD.gn
|
| +++ b/third_party/libxml/BUILD.gn
|
| @@ -155,7 +155,10 @@
|
| ]
|
|
|
| if (is_win) {
|
| - cflags_c = [ "/wd4101" ] # Unreferenced local variable.
|
| + cflags_c = [
|
| + "/wd4018", # Signed/unsigned mismatch in comparison.
|
| + "/wd4101", # Unreferenced local variable.
|
| + ]
|
| } else if (is_mac || is_ios || is_android) {
|
| # http://www.xmlsoft.org/threads.html says that this is required when using
|
| # libxml from several threads, which can possibly happen in chrome. On
|
|
|