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

Side by Side Diff: runtime/bin/net/ssl.gyp

Issue 18500006: dart:io | Pass errors from multithreaded encryption back to Dart. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Compile libssl_dart without DEBUG defined. Created 7 years, 5 months 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/bin/secure_socket.h » ('j') | 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 # 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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/secure_socket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698