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

Side by Side Diff: net/net_common.gypi

Issue 1278763002: Add a ClientKeyStore to allow injection of non-platform keys for TLS client auth. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@client_cert_store
Patch Set: Nits. Created 5 years, 3 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
« no previous file with comments | « net/net.gypi ('k') | net/ssl/client_key_store.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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 # This target is included in both 'net' and 'net_small'. 6 # This target is included in both 'net' and 'net_small'.
7 'type': '<(component)', 7 'type': '<(component)',
8 'variables': { 'enable_wexit_time_destructors': 1, }, 8 'variables': { 'enable_wexit_time_destructors': 1, },
9 'dependencies': [ 9 'dependencies': [
10 '../base/base.gyp:base', 10 '../base/base.gyp:base',
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 'quic/crypto/chacha20_poly1305_decrypter_openssl.cc', 167 'quic/crypto/chacha20_poly1305_decrypter_openssl.cc',
168 'quic/crypto/chacha20_poly1305_encrypter_openssl.cc', 168 'quic/crypto/chacha20_poly1305_encrypter_openssl.cc',
169 'quic/crypto/channel_id_openssl.cc', 169 'quic/crypto/channel_id_openssl.cc',
170 'quic/crypto/p256_key_exchange_openssl.cc', 170 'quic/crypto/p256_key_exchange_openssl.cc',
171 'quic/crypto/scoped_evp_aead_ctx.cc', 171 'quic/crypto/scoped_evp_aead_ctx.cc',
172 'quic/crypto/scoped_evp_aead_ctx.h', 172 'quic/crypto/scoped_evp_aead_ctx.h',
173 'socket/ssl_client_socket_openssl.cc', 173 'socket/ssl_client_socket_openssl.cc',
174 'socket/ssl_client_socket_openssl.h', 174 'socket/ssl_client_socket_openssl.h',
175 'socket/ssl_server_socket_openssl.cc', 175 'socket/ssl_server_socket_openssl.cc',
176 'socket/ssl_server_socket_openssl.h', 176 'socket/ssl_server_socket_openssl.h',
177 'ssl/client_key_store.cc',
178 'ssl/client_key_store.h',
177 'ssl/openssl_ssl_util.cc', 179 'ssl/openssl_ssl_util.cc',
178 'ssl/openssl_ssl_util.h', 180 'ssl/openssl_ssl_util.h',
179 'ssl/ssl_client_session_cache_openssl.cc', 181 'ssl/ssl_client_session_cache_openssl.cc',
180 'ssl/ssl_client_session_cache_openssl.h', 182 'ssl/ssl_client_session_cache_openssl.h',
181 'ssl/ssl_platform_key.h', 183 'ssl/ssl_platform_key.h',
182 'ssl/ssl_platform_key_nss.cc', 184 'ssl/ssl_platform_key_nss.cc',
183 'ssl/threaded_ssl_private_key.cc', 185 'ssl/threaded_ssl_private_key.cc',
184 'ssl/threaded_ssl_private_key.h', 186 'ssl/threaded_ssl_private_key.h',
185 ], 187 ],
186 }, 188 },
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 'cert/nss_cert_database_chromeos.h', 273 'cert/nss_cert_database_chromeos.h',
272 'cert/nss_profile_filter_chromeos.cc', 274 'cert/nss_profile_filter_chromeos.cc',
273 'cert/nss_profile_filter_chromeos.h', 275 'cert/nss_profile_filter_chromeos.h',
274 'cert/test_root_certs_nss.cc', 276 'cert/test_root_certs_nss.cc',
275 'cert/x509_certificate_nss.cc', 277 'cert/x509_certificate_nss.cc',
276 'cert/x509_util_nss_certs.cc', 278 'cert/x509_util_nss_certs.cc',
277 'cert_net/nss_ocsp.cc', 279 'cert_net/nss_ocsp.cc',
278 'cert_net/nss_ocsp.h', 280 'cert_net/nss_ocsp.h',
279 'ssl/client_cert_store_nss.cc', 281 'ssl/client_cert_store_nss.cc',
280 'ssl/client_cert_store_nss.h', 282 'ssl/client_cert_store_nss.h',
283 'ssl/client_key_store.cc',
284 'ssl/client_key_store.h',
281 'ssl/ssl_platform_key_nss.cc', 285 'ssl/ssl_platform_key_nss.cc',
282 'third_party/mozilla_security_manager/nsKeygenHandler.cpp', 286 'third_party/mozilla_security_manager/nsKeygenHandler.cpp',
283 'third_party/mozilla_security_manager/nsKeygenHandler.h', 287 'third_party/mozilla_security_manager/nsKeygenHandler.h',
284 'third_party/mozilla_security_manager/nsNSSCertificateDB.cpp', 288 'third_party/mozilla_security_manager/nsNSSCertificateDB.cpp',
285 'third_party/mozilla_security_manager/nsNSSCertificateDB.h', 289 'third_party/mozilla_security_manager/nsNSSCertificateDB.h',
286 'third_party/mozilla_security_manager/nsPKCS12Blob.cpp', 290 'third_party/mozilla_security_manager/nsPKCS12Blob.cpp',
287 'third_party/mozilla_security_manager/nsPKCS12Blob.h', 291 'third_party/mozilla_security_manager/nsPKCS12Blob.h',
288 ], 292 ],
289 }, 293 },
290 ], 294 ],
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 ['include', '^cert/test_root_certs_nss\\.cc$'], 430 ['include', '^cert/test_root_certs_nss\\.cc$'],
427 ['include', '^cert/x509_util_nss_certs\\.cc$'], 431 ['include', '^cert/x509_util_nss_certs\\.cc$'],
428 ['include', '^cert_net/nss_ocsp\\.cc$'], 432 ['include', '^cert_net/nss_ocsp\\.cc$'],
429 ['include', '^cert_net/nss_ocsp\\.h$'], 433 ['include', '^cert_net/nss_ocsp\\.h$'],
430 ['include', '^proxy/proxy_resolver_mac\\.cc$'], 434 ['include', '^proxy/proxy_resolver_mac\\.cc$'],
431 ['include', '^proxy/proxy_server_mac\\.cc$'], 435 ['include', '^proxy/proxy_server_mac\\.cc$'],
432 ], 436 ],
433 }], 437 }],
434 ], 438 ],
435 } 439 }
OLDNEW
« no previous file with comments | « net/net.gypi ('k') | net/ssl/client_key_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698