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

Side by Side Diff: nss.gyp

Issue 11438010: Ignore integer to void* casts warnings in third_party/nss (Closed) Base URL: http://src.chromium.org/chrome/trunk/deps/third_party/nss/
Patch Set: Created 8 years 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
« 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 1119 matching lines...) Expand 10 before | Expand all | Expand 10 after
1130 # nss doesn't explicitly cast between different enum types. 1130 # nss doesn't explicitly cast between different enum types.
1131 '-Wno-conversion', 1131 '-Wno-conversion',
1132 # nss passes "const char*" through "void*". 1132 # nss passes "const char*" through "void*".
1133 '-Wno-incompatible-pointer-types', 1133 '-Wno-incompatible-pointer-types',
1134 # nss prefers `a && b || c` over `(a && b) || c`. 1134 # nss prefers `a && b || c` over `(a && b) || c`.
1135 '-Wno-logical-op-parentheses', 1135 '-Wno-logical-op-parentheses',
1136 # nss doesn't use exhaustive switches on enums 1136 # nss doesn't use exhaustive switches on enums
1137 '-Wno-switch', 1137 '-Wno-switch',
1138 # nss has some `unsigned < 0` checks. 1138 # nss has some `unsigned < 0` checks.
1139 '-Wno-tautological-compare', 1139 '-Wno-tautological-compare',
1140 # nss casts integers to void* for logging.
1141 '-Wno-int-to-pointer-cast',
1140 ], 1142 ],
1141 }, 1143 },
1142 'cflags': [ 1144 'cflags': [
1143 '-Wno-conversion', 1145 '-Wno-conversion',
1144 '-Wno-incompatible-pointer-types', 1146 '-Wno-incompatible-pointer-types',
1145 '-Wno-logical-op-parentheses', 1147 '-Wno-logical-op-parentheses',
1146 '-Wno-switch', 1148 '-Wno-switch',
1147 '-Wno-tautological-compare', 1149 '-Wno-tautological-compare',
1148 ], 1150 ],
1149 }], 1151 }],
1150 ], 1152 ],
1151 }, 1153 },
1152 ], 1154 ],
1153 } 1155 }
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