| 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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |