| 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 232552 (this should agree with "nss_rev" in DEPS). | 10 # Revision 232552 (this should agree with "nss_rev" in DEPS). |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 # Changed by Dart: '<(ssl_directory)/' added to all paths. | 94 # Changed by Dart: '<(ssl_directory)/' added to all paths. |
| 95 'sources!': [ | 95 'sources!': [ |
| 96 '<(ssl_directory)/ssl/os2_err.c', | 96 '<(ssl_directory)/ssl/os2_err.c', |
| 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!': [ |
| 105 'DEBUG', |
| 106 ], |
| 104 'dependencies': [ | 107 'dependencies': [ |
| 105 # Changed by Dart. | 108 # Changed by Dart. |
| 106 'zlib.gyp:zlib_dart', # Added by Dart (the _dart postfix) | 109 'zlib.gyp:zlib_dart', # Added by Dart (the _dart postfix) |
| 107 # Dart: Start of copy of code from 'bodge' conditions section below. | 110 # Dart: Start of copy of code from 'bodge' conditions section below. |
| 108 'nss.gyp:nspr_dart', # Added by Dart (the _dart postfix) | 111 'nss.gyp:nspr_dart', # Added by Dart (the _dart postfix) |
| 109 'nss.gyp:nss_dart', # Added by Dart (the _dart postfix) | 112 'nss.gyp:nss_dart', # Added by Dart (the _dart postfix) |
| 110 ], | 113 ], |
| 111 'export_dependent_settings': [ | 114 'export_dependent_settings': [ |
| 112 'nss.gyp:nspr_dart', # Added by Dart (the _dart postfix) | 115 'nss.gyp:nspr_dart', # Added by Dart (the _dart postfix) |
| 113 'nss.gyp:nss_dart', # Added by Dart (the _dart postfix) | 116 'nss.gyp:nss_dart', # Added by Dart (the _dart postfix) |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 'inherit_from': ['Dart_Base'], | 207 'inherit_from': ['Dart_Base'], |
| 205 'defines': [ | 208 'defines': [ |
| 206 'DEBUG', | 209 'DEBUG', |
| 207 ], | 210 ], |
| 208 }, | 211 }, |
| 209 }, | 212 }, |
| 210 }, | 213 }, |
| 211 ], | 214 ], |
| 212 }]], | 215 }]], |
| 213 } | 216 } |
| OLD | NEW |