Commit 9db8aaac authored by jschuh@chromium.org's avatar jschuh@chromium.org

Make crypto build on Win64

BUG=166496
BUG=167187
TBR=rsleevi

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@175954 0039d316-1c4b-4281-b951-d872f2087c98
parent deead092
...@@ -129,6 +129,10 @@ ...@@ -129,6 +129,10 @@
'capi_util.cc', 'capi_util.cc',
], ],
}], }],
[ 'OS == "win"', {
# TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
'msvs_disabled_warnings': [4267, ],
}],
[ 'use_openssl==1', { [ 'use_openssl==1', {
# TODO(joth): Use a glob to match exclude patterns once the # TODO(joth): Use a glob to match exclude patterns once the
# OpenSSL file set is complete. # OpenSSL file set is complete.
...@@ -319,6 +323,10 @@ ...@@ -319,6 +323,10 @@
'../third_party/nss/nss.gyp:nspr', '../third_party/nss/nss.gyp:nspr',
], ],
}], }],
[ 'OS == "win"', {
# TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
'msvs_disabled_warnings': [4267, ],
}],
[ 'use_openssl==1', { [ 'use_openssl==1', {
'sources!': [ 'sources!': [
'nss_util_unittest.cc', 'nss_util_unittest.cc',
......
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