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

Side by Side Diff: net/net.gyp

Issue 5594009: Adds first cut implementation of a private key store abstraction for openssl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: wtc comment from http://codereview.chromium.org/5592003/ Created 10 years 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 | « net/base/ssl_config_service.h ('k') | net/socket/ssl_client_socket_openssl.cc » ('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) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 'base/network_change_notifier_mac.cc', 135 'base/network_change_notifier_mac.cc',
136 'base/network_change_notifier_mac.h', 136 'base/network_change_notifier_mac.h',
137 'base/network_change_notifier_netlink_linux.cc', 137 'base/network_change_notifier_netlink_linux.cc',
138 'base/network_change_notifier_netlink_linux.h', 138 'base/network_change_notifier_netlink_linux.h',
139 'base/network_change_notifier_win.cc', 139 'base/network_change_notifier_win.cc',
140 'base/network_change_notifier_win.h', 140 'base/network_change_notifier_win.h',
141 'base/network_config_watcher_mac.cc', 141 'base/network_config_watcher_mac.cc',
142 'base/network_config_watcher_mac.h', 142 'base/network_config_watcher_mac.h',
143 'base/nss_memio.c', 143 'base/nss_memio.c',
144 'base/nss_memio.h', 144 'base/nss_memio.h',
145 'base/openssl_memory_private_key_store.cc',
146 'base/openssl_private_key_store.h',
145 'base/pem_tokenizer.cc', 147 'base/pem_tokenizer.cc',
146 'base/pem_tokenizer.h', 148 'base/pem_tokenizer.h',
147 'base/platform_mime_util.h', 149 'base/platform_mime_util.h',
148 # TODO(tc): gnome-vfs? xdgmime? /etc/mime.types? 150 # TODO(tc): gnome-vfs? xdgmime? /etc/mime.types?
149 'base/platform_mime_util_linux.cc', 151 'base/platform_mime_util_linux.cc',
150 'base/platform_mime_util_mac.cc', 152 'base/platform_mime_util_mac.cc',
151 'base/platform_mime_util_win.cc', 153 'base/platform_mime_util_win.cc',
152 'base/registry_controlled_domain.cc', 154 'base/registry_controlled_domain.cc',
153 'base/registry_controlled_domain.h', 155 'base/registry_controlled_domain.h',
154 'base/scoped_cert_chain_context.h', 156 'base/scoped_cert_chain_context.h',
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 'third_party/mozilla_security_manager/nsNSSCertTrust.cpp', 280 'third_party/mozilla_security_manager/nsNSSCertTrust.cpp',
279 'third_party/mozilla_security_manager/nsNSSCertTrust.h', 281 'third_party/mozilla_security_manager/nsNSSCertTrust.h',
280 'third_party/mozilla_security_manager/nsPKCS12Blob.cpp', 282 'third_party/mozilla_security_manager/nsPKCS12Blob.cpp',
281 'third_party/mozilla_security_manager/nsPKCS12Blob.h', 283 'third_party/mozilla_security_manager/nsPKCS12Blob.h',
282 ], 284 ],
283 }, 285 },
284 { # else: not using openssl. 286 { # else: not using openssl.
285 'sources!': [ 287 'sources!': [
286 'base/cert_database_openssl.cc', 288 'base/cert_database_openssl.cc',
287 'base/keygen_handler_openssl.cc', 289 'base/keygen_handler_openssl.cc',
290 'base/openssl_memory_private_key_store.cc',
291 'base/openssl_private_key_store.h',
288 'base/x509_certificate_openssl.cc', 292 'base/x509_certificate_openssl.cc',
289 'base/x509_openssl_util.cc', 293 'base/x509_openssl_util.cc',
290 'base/x509_openssl_util.h', 294 'base/x509_openssl_util.h',
291 ], 295 ],
292 }, 296 },
293 ], 297 ],
294 [ 'OS == "win"', { 298 [ 'OS == "win"', {
295 'dependencies': [ 299 'dependencies': [
296 '../third_party/nss/nss.gyp:nss', 300 '../third_party/nss/nss.gyp:nss',
297 'tld_cleanup', 301 'tld_cleanup',
(...skipping 1153 matching lines...) Expand 10 before | Expand all | Expand 10 after
1451 ], 1455 ],
1452 }], 1456 }],
1453 ], 1457 ],
1454 } 1458 }
1455 1459
1456 # Local Variables: 1460 # Local Variables:
1457 # tab-width:2 1461 # tab-width:2
1458 # indent-tabs-mode:nil 1462 # indent-tabs-mode:nil
1459 # End: 1463 # End:
1460 # vim: set expandtab tabstop=2 shiftwidth=2: 1464 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « net/base/ssl_config_service.h ('k') | net/socket/ssl_client_socket_openssl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698