Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(970)

Side by Side Diff: nss.gyp

Issue 11886033: It is not necessary to disable Visual C++ warning C4334 when (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/nss/
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'conditions': [ 7 'conditions': [
8 ['OS=="ios"', { 8 ['OS=="ios"', {
9 'exclude_nss_root_certs%': 0, 9 'exclude_nss_root_certs%': 0,
10 'exclude_nss_libpkix%': 0, 10 'exclude_nss_libpkix%': 0,
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 'defines': [ 234 'defines': [
235 'NO_NSPR_10_SUPPORT', 235 'NO_NSPR_10_SUPPORT',
236 ], 236 ],
237 'include_dirs': [ 237 'include_dirs': [
238 'mozilla/nsprpub/pr/include', 238 'mozilla/nsprpub/pr/include',
239 'mozilla/nsprpub/lib/ds', 239 'mozilla/nsprpub/lib/ds',
240 'mozilla/nsprpub/lib/libc/include', 240 'mozilla/nsprpub/lib/libc/include',
241 ], 241 ],
242 }, 242 },
243 # TODO(wtc): suppress C4244 and C4554 in prdtoa.c. 243 # TODO(wtc): suppress C4244 and C4554 in prdtoa.c.
244 'msvs_disabled_warnings': [4018, 4244, 4554, 4267, 4334,], 244 'msvs_disabled_warnings': [4018, 4244, 4554, 4267,],
245 'conditions': [ 245 'conditions': [
246 ['OS=="mac" or OS=="ios"', { 246 ['OS=="mac" or OS=="ios"', {
247 'defines': [ 247 'defines': [
248 'XP_UNIX', 248 'XP_UNIX',
249 'DARWIN', 249 'DARWIN',
250 'XP_MACOSX', 250 'XP_MACOSX',
251 '_PR_PTHREADS', 251 '_PR_PTHREADS',
252 'HAVE_BSD_FLOCK', 252 'HAVE_BSD_FLOCK',
253 'HAVE_CRT_EXTERNS_H', 253 'HAVE_CRT_EXTERNS_H',
254 'HAVE_DLADDR', 254 'HAVE_DLADDR',
(...skipping 902 matching lines...) Expand 10 before | Expand all | Expand 10 after
1157 '-Wno-incompatible-pointer-types', 1157 '-Wno-incompatible-pointer-types',
1158 '-Wno-logical-op-parentheses', 1158 '-Wno-logical-op-parentheses',
1159 '-Wno-switch', 1159 '-Wno-switch',
1160 '-Wno-tautological-compare', 1160 '-Wno-tautological-compare',
1161 ], 1161 ],
1162 }], 1162 }],
1163 ], 1163 ],
1164 }, 1164 },
1165 ], 1165 ],
1166 } 1166 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698