diff options
author | jschuh@chromium.org <jschuh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-10 00:55:22 +0000 |
---|---|---|
committer | jschuh@chromium.org <jschuh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-10 00:55:22 +0000 |
commit | 9db8aaac3faff2680f843f451f9d2e4f0c9186fa (patch) | |
tree | 5c6a663c69ac8de1a23ab7fd8acfa92a4d994034 /crypto | |
parent | deead092b838322c9f53fd48706674357ec64954 (diff) | |
download | chromium_src-9db8aaac3faff2680f843f451f9d2e4f0c9186fa.zip chromium_src-9db8aaac3faff2680f843f451f9d2e4f0c9186fa.tar.gz chromium_src-9db8aaac3faff2680f843f451f9d2e4f0c9186fa.tar.bz2 |
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
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/crypto.gyp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/crypto/crypto.gyp b/crypto/crypto.gyp index c806873..60a34c6a 100644 --- a/crypto/crypto.gyp +++ b/crypto/crypto.gyp @@ -129,6 +129,10 @@ 'capi_util.cc', ], }], + [ 'OS == "win"', { + # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. + 'msvs_disabled_warnings': [4267, ], + }], [ 'use_openssl==1', { # TODO(joth): Use a glob to match exclude patterns once the # OpenSSL file set is complete. @@ -319,6 +323,10 @@ '../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', { 'sources!': [ 'nss_util_unittest.cc', |