| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |