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

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: rebase Created 5 years, 2 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 'quic/crypto/chacha20_poly1305_encrypter_nss.cc', 123 'quic/crypto/chacha20_poly1305_encrypter_nss.cc',
124 'quic/crypto/channel_id_nss.cc', 124 'quic/crypto/channel_id_nss.cc',
125 'quic/crypto/p256_key_exchange_nss.cc', 125 'quic/crypto/p256_key_exchange_nss.cc',
126 'quic/crypto/proof_source_chromium_nss.cc', 126 'quic/crypto/proof_source_chromium_nss.cc',
127 'socket/nss_ssl_util.cc', 127 'socket/nss_ssl_util.cc',
128 'socket/nss_ssl_util.h', 128 'socket/nss_ssl_util.h',
129 'socket/ssl_client_socket_nss.cc', 129 'socket/ssl_client_socket_nss.cc',
130 'socket/ssl_client_socket_nss.h', 130 'socket/ssl_client_socket_nss.h',
131 'socket/ssl_server_socket_nss.cc', 131 'socket/ssl_server_socket_nss.cc',
132 'socket/ssl_server_socket_nss.h', 132 'socket/ssl_server_socket_nss.h',
133 'ssl/token_binding_nss.cc',
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',
(...skipping 17 matching lines...) Expand all
160 'ssl/client_key_store.cc', 161 'ssl/client_key_store.cc',
161 'ssl/client_key_store.h', 162 'ssl/client_key_store.h',
162 'ssl/openssl_ssl_util.cc', 163 'ssl/openssl_ssl_util.cc',
163 'ssl/openssl_ssl_util.h', 164 'ssl/openssl_ssl_util.h',
164 'ssl/ssl_client_session_cache_openssl.cc', 165 'ssl/ssl_client_session_cache_openssl.cc',
165 'ssl/ssl_client_session_cache_openssl.h', 166 'ssl/ssl_client_session_cache_openssl.h',
166 'ssl/ssl_platform_key.h', 167 'ssl/ssl_platform_key.h',
167 'ssl/ssl_platform_key_nss.cc', 168 'ssl/ssl_platform_key_nss.cc',
168 'ssl/threaded_ssl_private_key.cc', 169 'ssl/threaded_ssl_private_key.cc',
169 'ssl/threaded_ssl_private_key.h', 170 'ssl/threaded_ssl_private_key.h',
171 'ssl/token_binding_openssl.cc',
170 ], 172 ],
171 }, 173 },
172 ], 174 ],
173 [ 'use_nss_certs == 1 or OS == "ios" or use_openssl == 0', { 175 [ 'use_nss_certs == 1 or OS == "ios" or use_openssl == 0', {
174 'conditions': [ 176 'conditions': [
175 # Pull in the bundled or system NSS as appropriate. 177 # Pull in the bundled or system NSS as appropriate.
176 [ 'desktop_linux == 1 or chromeos == 1', { 178 [ 'desktop_linux == 1 or chromeos == 1', {
177 'dependencies': [ 179 'dependencies': [
178 '../build/linux/system.gyp:ssl', 180 '../build/linux/system.gyp:ssl',
179 ], 181 ],
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
398 ['include', '^cert/test_root_certs_nss\\.cc$'], 400 ['include', '^cert/test_root_certs_nss\\.cc$'],
399 ['include', '^cert/x509_util_nss_certs\\.cc$'], 401 ['include', '^cert/x509_util_nss_certs\\.cc$'],
400 ['include', '^cert_net/nss_ocsp\\.cc$'], 402 ['include', '^cert_net/nss_ocsp\\.cc$'],
401 ['include', '^cert_net/nss_ocsp\\.h$'], 403 ['include', '^cert_net/nss_ocsp\\.h$'],
402 ['include', '^proxy/proxy_resolver_mac\\.cc$'], 404 ['include', '^proxy/proxy_resolver_mac\\.cc$'],
403 ['include', '^proxy/proxy_server_mac\\.cc$'], 405 ['include', '^proxy/proxy_server_mac\\.cc$'],
404 ], 406 ],
405 }], 407 }],
406 ], 408 ],
407 } 409 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698