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

Side by Side Diff: net/net.gyp

Issue 274783002: Implement SSL server socket over OpenSSL. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 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 | « no previous file | net/net.gypi » ('j') | net/socket/openssl_util.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'linux_link_kerberos%': 0, 9 'linux_link_kerberos%': 0,
10 'use_tracing_cache_backend%': 0, 10 'use_tracing_cache_backend%': 0,
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 'quic/crypto/aead_base_decrypter_openssl.cc', 234 'quic/crypto/aead_base_decrypter_openssl.cc',
235 'quic/crypto/aead_base_encrypter_openssl.cc', 235 'quic/crypto/aead_base_encrypter_openssl.cc',
236 'quic/crypto/aes_128_gcm_12_decrypter_openssl.cc', 236 'quic/crypto/aes_128_gcm_12_decrypter_openssl.cc',
237 'quic/crypto/aes_128_gcm_12_encrypter_openssl.cc', 237 'quic/crypto/aes_128_gcm_12_encrypter_openssl.cc',
238 'quic/crypto/chacha20_poly1305_decrypter_openssl.cc', 238 'quic/crypto/chacha20_poly1305_decrypter_openssl.cc',
239 'quic/crypto/chacha20_poly1305_encrypter_openssl.cc', 239 'quic/crypto/chacha20_poly1305_encrypter_openssl.cc',
240 'quic/crypto/channel_id_openssl.cc', 240 'quic/crypto/channel_id_openssl.cc',
241 'quic/crypto/p256_key_exchange_openssl.cc', 241 'quic/crypto/p256_key_exchange_openssl.cc',
242 'quic/crypto/scoped_evp_aead_ctx.cc', 242 'quic/crypto/scoped_evp_aead_ctx.cc',
243 'quic/crypto/scoped_evp_aead_ctx.h', 243 'quic/crypto/scoped_evp_aead_ctx.h',
244 'socket/openssl_util.cc',
245 'socket/openssl_util.h',
Ryan Sleevi 2014/05/12 01:35:25 You also need to update net/BUILD.gn
byungchul 2014/05/12 18:25:23 Done.
244 'socket/ssl_client_socket_openssl.cc', 246 'socket/ssl_client_socket_openssl.cc',
245 'socket/ssl_client_socket_openssl.h', 247 'socket/ssl_client_socket_openssl.h',
246 'socket/ssl_server_socket_openssl.cc', 248 'socket/ssl_server_socket_openssl.cc',
249 'socket/ssl_server_socket_openssl.h',
247 'socket/ssl_session_cache_openssl.cc', 250 'socket/ssl_session_cache_openssl.cc',
248 'socket/ssl_session_cache_openssl.h', 251 'socket/ssl_session_cache_openssl.h',
249 ], 252 ],
250 }, 253 },
251 ], 254 ],
252 [ 'use_openssl_certs == 0', { 255 [ 'use_openssl_certs == 0', {
253 'sources!': [ 256 'sources!': [
254 'base/keygen_handler_openssl.cc', 257 'base/keygen_handler_openssl.cc',
255 'base/openssl_private_key_store.h', 258 'base/openssl_private_key_store.h',
256 'base/openssl_private_key_store_android.cc', 259 'base/openssl_private_key_store_android.cc',
(...skipping 1338 matching lines...) Expand 10 before | Expand all | Expand 10 after
1595 'net_unittests.isolate', 1598 'net_unittests.isolate',
1596 ], 1599 ],
1597 'sources': [ 1600 'sources': [
1598 'net_unittests.isolate', 1601 'net_unittests.isolate',
1599 ], 1602 ],
1600 }, 1603 },
1601 ], 1604 ],
1602 }], 1605 }],
1603 ], 1606 ],
1604 } 1607 }
OLDNEW
« no previous file with comments | « no previous file | net/net.gypi » ('j') | net/socket/openssl_util.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698