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

Side by Side Diff: net/net_common.gypi

Issue 1309813003: Implement an openssl version of a QUIC ProofSource. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More iOS fix 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/quic/crypto/crypto_server_test.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 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 'cert/sha256_legacy_support_nss_win.cc', 117 'cert/sha256_legacy_support_nss_win.cc',
118 'cert/x509_util_nss.cc', 118 'cert/x509_util_nss.cc',
119 'quic/crypto/aead_base_decrypter_nss.cc', 119 'quic/crypto/aead_base_decrypter_nss.cc',
120 'quic/crypto/aead_base_encrypter_nss.cc', 120 'quic/crypto/aead_base_encrypter_nss.cc',
121 'quic/crypto/aes_128_gcm_12_decrypter_nss.cc', 121 'quic/crypto/aes_128_gcm_12_decrypter_nss.cc',
122 'quic/crypto/aes_128_gcm_12_encrypter_nss.cc', 122 'quic/crypto/aes_128_gcm_12_encrypter_nss.cc',
123 'quic/crypto/chacha20_poly1305_decrypter_nss.cc', 123 'quic/crypto/chacha20_poly1305_decrypter_nss.cc',
124 'quic/crypto/chacha20_poly1305_encrypter_nss.cc', 124 'quic/crypto/chacha20_poly1305_encrypter_nss.cc',
125 'quic/crypto/channel_id_nss.cc', 125 'quic/crypto/channel_id_nss.cc',
126 'quic/crypto/p256_key_exchange_nss.cc', 126 'quic/crypto/p256_key_exchange_nss.cc',
127 'quic/crypto/proof_source_chromium_nss.cc',
127 'socket/nss_ssl_util.cc', 128 'socket/nss_ssl_util.cc',
128 'socket/nss_ssl_util.h', 129 'socket/nss_ssl_util.h',
129 'socket/ssl_client_socket_nss.cc', 130 'socket/ssl_client_socket_nss.cc',
130 'socket/ssl_client_socket_nss.h', 131 'socket/ssl_client_socket_nss.h',
131 'socket/ssl_server_socket_nss.cc', 132 'socket/ssl_server_socket_nss.cc',
132 'socket/ssl_server_socket_nss.h', 133 'socket/ssl_server_socket_nss.h',
133 ], 134 ],
134 'dependencies': [ 135 'dependencies': [
135 '../third_party/boringssl/boringssl.gyp:boringssl', 136 '../third_party/boringssl/boringssl.gyp:boringssl',
136 ], 137 ],
137 }, 138 },
138 { # else !use_openssl: remove the unneeded files and depend on NSS. 139 { # else !use_openssl: remove the unneeded files and depend on NSS.
139 'sources!': [ 140 'sources!': [
140 'cert/ct_log_verifier_openssl.cc', 141 'cert/ct_log_verifier_openssl.cc',
141 'cert/ct_objects_extractor_openssl.cc', 142 'cert/ct_objects_extractor_openssl.cc',
142 'cert/jwk_serializer_openssl.cc', 143 'cert/jwk_serializer_openssl.cc',
143 'cert/sha256_legacy_support_openssl_win.cc', 144 'cert/sha256_legacy_support_openssl_win.cc',
144 'cert/x509_util_openssl.cc', 145 'cert/x509_util_openssl.cc',
145 'cert/x509_util_openssl.h', 146 'cert/x509_util_openssl.h',
146 'quic/crypto/aead_base_decrypter_openssl.cc', 147 'quic/crypto/aead_base_decrypter_openssl.cc',
147 'quic/crypto/aead_base_encrypter_openssl.cc', 148 'quic/crypto/aead_base_encrypter_openssl.cc',
148 'quic/crypto/aes_128_gcm_12_decrypter_openssl.cc', 149 'quic/crypto/aes_128_gcm_12_decrypter_openssl.cc',
149 'quic/crypto/aes_128_gcm_12_encrypter_openssl.cc', 150 'quic/crypto/aes_128_gcm_12_encrypter_openssl.cc',
150 'quic/crypto/chacha20_poly1305_decrypter_openssl.cc', 151 'quic/crypto/chacha20_poly1305_decrypter_openssl.cc',
151 'quic/crypto/chacha20_poly1305_encrypter_openssl.cc', 152 'quic/crypto/chacha20_poly1305_encrypter_openssl.cc',
152 'quic/crypto/channel_id_openssl.cc', 153 'quic/crypto/channel_id_openssl.cc',
153 'quic/crypto/p256_key_exchange_openssl.cc', 154 'quic/crypto/p256_key_exchange_openssl.cc',
155 'quic/crypto/proof_source_chromium_openssl.cc',
154 'quic/crypto/scoped_evp_aead_ctx.cc', 156 'quic/crypto/scoped_evp_aead_ctx.cc',
155 'quic/crypto/scoped_evp_aead_ctx.h', 157 'quic/crypto/scoped_evp_aead_ctx.h',
156 'socket/ssl_client_socket_openssl.cc', 158 'socket/ssl_client_socket_openssl.cc',
157 'socket/ssl_client_socket_openssl.h', 159 'socket/ssl_client_socket_openssl.h',
158 'socket/ssl_server_socket_openssl.cc', 160 'socket/ssl_server_socket_openssl.cc',
159 'socket/ssl_server_socket_openssl.h', 161 'socket/ssl_server_socket_openssl.h',
160 'ssl/client_key_store.cc', 162 'ssl/client_key_store.cc',
161 'ssl/client_key_store.h', 163 'ssl/client_key_store.h',
162 'ssl/openssl_ssl_util.cc', 164 'ssl/openssl_ssl_util.cc',
163 'ssl/openssl_ssl_util.h', 165 'ssl/openssl_ssl_util.h',
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
404 ['include', '^cert/test_root_certs_nss\\.cc$'], 406 ['include', '^cert/test_root_certs_nss\\.cc$'],
405 ['include', '^cert/x509_util_nss_certs\\.cc$'], 407 ['include', '^cert/x509_util_nss_certs\\.cc$'],
406 ['include', '^cert_net/nss_ocsp\\.cc$'], 408 ['include', '^cert_net/nss_ocsp\\.cc$'],
407 ['include', '^cert_net/nss_ocsp\\.h$'], 409 ['include', '^cert_net/nss_ocsp\\.h$'],
408 ['include', '^proxy/proxy_resolver_mac\\.cc$'], 410 ['include', '^proxy/proxy_resolver_mac\\.cc$'],
409 ['include', '^proxy/proxy_server_mac\\.cc$'], 411 ['include', '^proxy/proxy_server_mac\\.cc$'],
410 ], 412 ],
411 }], 413 }],
412 ], 414 ],
413 } 415 }
OLDNEW
« no previous file with comments | « net/net.gypi ('k') | net/quic/crypto/crypto_server_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698