diff options
author | Zeno Albisser <zeno.albisser@theqtcompany.com> | 2014-11-28 12:28:59 +0100 |
---|---|---|
committer | Allan Sandfeld Jensen <allan.jensen@theqtcompany.com> | 2015-06-23 14:25:44 +0000 |
commit | 7376c05fe65fa28b9d770d5d8efdf2ae08541e6c (patch) | |
tree | 53b2097b8e6bcf9a629a48174a2650cd7840a4dd | |
parent | d184706d6bd68673429448294f31da74f55f2a87 (diff) | |
download | qtwebengine-chromium-7376c05fe65fa28b9d770d5d8efdf2ae08541e6c.tar.gz |
<third_party/nss> Disable warning about use of deprecated functions on Windows.
This is only needed for compiling with MSVS2013.
Change-Id: I92f4c25335936139cdec04f0a1b7e87e0ec41a9e
Reviewed-by: Andras Becsi <andras.becsi@theqtcompany.com>
-rw-r--r-- | chromium/third_party/nss/nss.gyp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/third_party/nss/nss.gyp b/chromium/third_party/nss/nss.gyp index a6bf9eec058..6e20d3d1a1d 100644 --- a/chromium/third_party/nss/nss.gyp +++ b/chromium/third_party/nss/nss.gyp @@ -245,7 +245,7 @@ ], }, # TODO(wtc): suppress C4244 and C4554 in prdtoa.c. - 'msvs_disabled_warnings': [4018, 4244, 4554, 4267,], + 'msvs_disabled_warnings': [4018, 4244, 4554, 4267, 4996, ], 'variables': { 'clang_warning_flags': [ # nspr passes "const char*" through "void*". |