summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crypto/crypto.gyp8
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',