Commit 219c503b authored by scottmg@chromium.org's avatar scottmg@chromium.org

disable c4267 in cld for building on win x64

TBR=jschuh@chromium.org
BUG=167187


Review URL: https://chromiumcodereview.appspot.com/11783096

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@176150 0039d316-1c4b-4281-b951-d872f2087c98
parent 30bab639
...@@ -101,22 +101,20 @@ ...@@ -101,22 +101,20 @@
}, },
'conditions': [ 'conditions': [
['OS=="win"', { ['OS=="win"', {
'direct_dependent_settings': { 'direct_dependent_settings': {
'defines': [ 'defines': [
'COMPILER_MSVC', 'COMPILER_MSVC',
], ],
}, },
'msvs_disabled_warnings': [4005, 4006, 4018, 4244, 4309, 4800], # TODO(jschuh): C4267: http://crbug.com/167187 size_t -> int
}, 'msvs_disabled_warnings': [4005, 4006, 4018, 4244, 4309, 4800, 4267],
], }, {
['OS!="win"', { 'direct_dependent_settings': {
'direct_dependent_settings': { 'defines': [
'defines': [ 'COMPILER_GCC',
'COMPILER_GCC', ],
], },
}, }],
},
],
], ],
}, },
], ],
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment