diff options
author | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-10 23:17:14 +0000 |
---|---|---|
committer | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-10 23:17:14 +0000 |
commit | f61074ebe2568520845519dc8a8c0831dac85c3e (patch) | |
tree | bf4fe4639cc43c1ae00cd3dc9415b170a7ba3ae8 /third_party/libxml | |
parent | 8f2363c4d308f687e33ce09fa9eb3af0e9f6c78f (diff) | |
download | chromium_src-f61074ebe2568520845519dc8a8c0831dac85c3e.zip chromium_src-f61074ebe2568520845519dc8a8c0831dac85c3e.tar.gz chromium_src-f61074ebe2568520845519dc8a8c0831dac85c3e.tar.bz2 |
disable c4267 for libxml for building on win x64
TBR=jschuh@chromium.org
BUG=167187
Review URL: https://chromiumcodereview.appspot.com/11823056
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@176196 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/libxml')
-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', }], |