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

Side by Side Diff: net/net_common.gypi

Issue 1378613004: Set Token-Binding HTTP header (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@tb-tls-ext-new
Patch Set: Remove sequence numbers from mock reads Created 4 years, 11 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
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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 'quic/crypto/chacha20_poly1305_rfc7539_encrypter_nss.cc', 129 'quic/crypto/chacha20_poly1305_rfc7539_encrypter_nss.cc',
130 'quic/crypto/channel_id_nss.cc', 130 'quic/crypto/channel_id_nss.cc',
131 'quic/crypto/p256_key_exchange_nss.cc', 131 'quic/crypto/p256_key_exchange_nss.cc',
132 'quic/crypto/proof_source_chromium_nss.cc', 132 'quic/crypto/proof_source_chromium_nss.cc',
133 'socket/nss_ssl_util.cc', 133 'socket/nss_ssl_util.cc',
134 'socket/nss_ssl_util.h', 134 'socket/nss_ssl_util.h',
135 'socket/ssl_client_socket_nss.cc', 135 'socket/ssl_client_socket_nss.cc',
136 'socket/ssl_client_socket_nss.h', 136 'socket/ssl_client_socket_nss.h',
137 'socket/ssl_server_socket_nss.cc', 137 'socket/ssl_server_socket_nss.cc',
138 'socket/ssl_server_socket_nss.h', 138 'socket/ssl_server_socket_nss.h',
139 'ssl/token_binding_nss.cc',
139 ], 140 ],
140 'dependencies': [ 141 'dependencies': [
141 '../third_party/boringssl/boringssl.gyp:boringssl', 142 '../third_party/boringssl/boringssl.gyp:boringssl',
142 ], 143 ],
143 'conditions': [ 144 'conditions': [
144 ['chromecast==1 and use_nss_certs==1', { 145 ['chromecast==1 and use_nss_certs==1', {
145 'sources': [ 146 'sources': [
146 'ssl/ssl_platform_key_chromecast.cc', 147 'ssl/ssl_platform_key_chromecast.cc',
147 ], 148 ],
148 'sources!': [ 149 'sources!': [
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 'ssl/ssl_client_session_cache_openssl.cc', 183 'ssl/ssl_client_session_cache_openssl.cc',
183 'ssl/ssl_client_session_cache_openssl.h', 184 'ssl/ssl_client_session_cache_openssl.h',
184 'ssl/ssl_key_logger.cc', 185 'ssl/ssl_key_logger.cc',
185 'ssl/ssl_key_logger.h', 186 'ssl/ssl_key_logger.h',
186 'ssl/ssl_platform_key.h', 187 'ssl/ssl_platform_key.h',
187 'ssl/ssl_platform_key_nss.cc', 188 'ssl/ssl_platform_key_nss.cc',
188 'ssl/ssl_platform_key_task_runner.cc', 189 'ssl/ssl_platform_key_task_runner.cc',
189 'ssl/ssl_platform_key_task_runner.h', 190 'ssl/ssl_platform_key_task_runner.h',
190 'ssl/threaded_ssl_private_key.cc', 191 'ssl/threaded_ssl_private_key.cc',
191 'ssl/threaded_ssl_private_key.h', 192 'ssl/threaded_ssl_private_key.h',
193 'ssl/token_binding_openssl.cc',
192 ], 194 ],
193 }, 195 },
194 ], 196 ],
195 [ 'use_nss_certs == 1 or OS == "ios" or use_openssl == 0', { 197 [ 'use_nss_certs == 1 or OS == "ios" or use_openssl == 0', {
196 'conditions': [ 198 'conditions': [
197 # Pull in the bundled or system NSS as appropriate. 199 # Pull in the bundled or system NSS as appropriate.
198 [ 'desktop_linux == 1 or chromeos == 1', { 200 [ 'desktop_linux == 1 or chromeos == 1', {
199 'dependencies': [ 201 'dependencies': [
200 '../build/linux/system.gyp:ssl', 202 '../build/linux/system.gyp:ssl',
201 ], 203 ],
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
420 ['include', '^cert/test_root_certs_nss\\.cc$'], 422 ['include', '^cert/test_root_certs_nss\\.cc$'],
421 ['include', '^cert/x509_util_nss_certs\\.cc$'], 423 ['include', '^cert/x509_util_nss_certs\\.cc$'],
422 ['include', '^cert_net/nss_ocsp\\.cc$'], 424 ['include', '^cert_net/nss_ocsp\\.cc$'],
423 ['include', '^cert_net/nss_ocsp\\.h$'], 425 ['include', '^cert_net/nss_ocsp\\.h$'],
424 ['include', '^proxy/proxy_resolver_mac\\.cc$'], 426 ['include', '^proxy/proxy_resolver_mac\\.cc$'],
425 ['include', '^proxy/proxy_server_mac\\.cc$'], 427 ['include', '^proxy/proxy_server_mac\\.cc$'],
426 ], 428 ],
427 }], 429 }],
428 ], 430 ],
429 } 431 }
OLDNEW
« chrome/browser/io_thread.cc ('K') | « net/net.gypi ('k') | net/quic/quic_http_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698