| 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 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6 # for details. All rights reserved. Use of this source code is governed by a | 6 # for details. All rights reserved. Use of this source code is governed by a |
| 7 # BSD-style license that can be found in the LICENSE file. | 7 # BSD-style license that can be found in the LICENSE file. |
| 8 | 8 |
| 9 # This file is a modified copy of Chromium's src/net/third_party/nss/ssl.gyp. | 9 # This file is a modified copy of Chromium's src/net/third_party/nss/ssl.gyp. |
| 10 # Revision 199075 (this should agree with "nss_rev" in DEPS). | 10 # Revision 199075 (this should agree with "nss_rev" in DEPS). |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 '<(ssl_directory)/ssl/os2_err.h', | 97 '<(ssl_directory)/ssl/os2_err.h', |
| 98 ], | 98 ], |
| 99 'defines': [ | 99 'defines': [ |
| 100 'NO_PKCS11_BYPASS', | 100 'NO_PKCS11_BYPASS', |
| 101 'NSS_ENABLE_ECC', | 101 'NSS_ENABLE_ECC', |
| 102 'USE_UTIL_DIRECTLY', | 102 'USE_UTIL_DIRECTLY', |
| 103 ], | 103 ], |
| 104 'defines!': [ | 104 'defines!': [ |
| 105 # Regrettably, NSS can't be compiled with NO_NSPR_10_SUPPORT yet. | 105 # Regrettably, NSS can't be compiled with NO_NSPR_10_SUPPORT yet. |
| 106 'NO_NSPR_10_SUPPORT', | 106 'NO_NSPR_10_SUPPORT', |
| 107 'DEBUG', |
| 107 ], | 108 ], |
| 108 'dependencies': [ | 109 'dependencies': [ |
| 109 # Changed by Dart. | 110 # Changed by Dart. |
| 110 'zlib.gyp:zlib_dart', # Added by Dart (the _dart postfix) | 111 'zlib.gyp:zlib_dart', # Added by Dart (the _dart postfix) |
| 111 # Dart: Start of copy of code from 'bodge' conditions section below. | 112 # Dart: Start of copy of code from 'bodge' conditions section below. |
| 112 'nss.gyp:nspr_dart', # Added by Dart (the _dart postfix) | 113 'nss.gyp:nspr_dart', # Added by Dart (the _dart postfix) |
| 113 'nss.gyp:nss_dart', # Added by Dart (the _dart postfix) | 114 'nss.gyp:nss_dart', # Added by Dart (the _dart postfix) |
| 114 ], | 115 ], |
| 115 'export_dependent_settings': [ | 116 'export_dependent_settings': [ |
| 116 'nss.gyp:nspr_dart', # Added by Dart (the _dart postfix) | 117 'nss.gyp:nspr_dart', # Added by Dart (the _dart postfix) |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 'inherit_from': ['Dart_Base'], | 200 'inherit_from': ['Dart_Base'], |
| 200 'defines': [ | 201 'defines': [ |
| 201 'DEBUG', | 202 'DEBUG', |
| 202 ], | 203 ], |
| 203 }, | 204 }, |
| 204 }, | 205 }, |
| 205 }, | 206 }, |
| 206 ], | 207 ], |
| 207 }]], | 208 }]], |
| 208 } | 209 } |
| OLD | NEW |