| OLD | NEW |
| 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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 'quic/crypto/chacha20_poly1305_decrypter_openssl.cc', | 188 'quic/crypto/chacha20_poly1305_decrypter_openssl.cc', |
| 189 'quic/crypto/chacha20_poly1305_encrypter_openssl.cc', | 189 'quic/crypto/chacha20_poly1305_encrypter_openssl.cc', |
| 190 'quic/crypto/channel_id_openssl.cc', | 190 'quic/crypto/channel_id_openssl.cc', |
| 191 'quic/crypto/p256_key_exchange_openssl.cc', | 191 'quic/crypto/p256_key_exchange_openssl.cc', |
| 192 'quic/crypto/scoped_evp_aead_ctx.cc', | 192 'quic/crypto/scoped_evp_aead_ctx.cc', |
| 193 'quic/crypto/scoped_evp_aead_ctx.h', | 193 'quic/crypto/scoped_evp_aead_ctx.h', |
| 194 'socket/ssl_client_socket_openssl.cc', | 194 'socket/ssl_client_socket_openssl.cc', |
| 195 'socket/ssl_client_socket_openssl.h', | 195 'socket/ssl_client_socket_openssl.h', |
| 196 'socket/ssl_server_socket_openssl.cc', | 196 'socket/ssl_server_socket_openssl.cc', |
| 197 'socket/ssl_server_socket_openssl.h', | 197 'socket/ssl_server_socket_openssl.h', |
| 198 'socket/ssl_session_cache_openssl.cc', | |
| 199 'socket/ssl_session_cache_openssl.h', | |
| 200 'ssl/openssl_platform_key.h', | 198 'ssl/openssl_platform_key.h', |
| 201 'ssl/openssl_platform_key_mac.cc', | 199 'ssl/openssl_platform_key_mac.cc', |
| 202 'ssl/openssl_platform_key_win.cc', | 200 'ssl/openssl_platform_key_win.cc', |
| 203 'ssl/openssl_ssl_util.cc', | 201 'ssl/openssl_ssl_util.cc', |
| 204 'ssl/openssl_ssl_util.h', | 202 'ssl/openssl_ssl_util.h', |
| 203 'ssl/ssl_client_session_cache_openssl.cc', |
| 204 'ssl/ssl_client_session_cache_openssl.h', |
| 205 ], | 205 ], |
| 206 'conditions': [ | 206 'conditions': [ |
| 207 # Pull in the bundled or system NSS as appropriate. | 207 # Pull in the bundled or system NSS as appropriate. |
| 208 [ 'desktop_linux == 1 or chromeos == 1', { | 208 [ 'desktop_linux == 1 or chromeos == 1', { |
| 209 'dependencies': [ | 209 'dependencies': [ |
| 210 '../build/linux/system.gyp:ssl', | 210 '../build/linux/system.gyp:ssl', |
| 211 ], | 211 ], |
| 212 }, { | 212 }, { |
| 213 'dependencies': [ | 213 'dependencies': [ |
| 214 '../third_party/nss/nss.gyp:nspr', | 214 '../third_party/nss/nss.gyp:nspr', |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 416 ['include', '^cert/x509_util_nss\\.cc$'], | 416 ['include', '^cert/x509_util_nss\\.cc$'], |
| 417 ['include', '^cert/x509_util_nss\\.h$'], | 417 ['include', '^cert/x509_util_nss\\.h$'], |
| 418 ['include', '^proxy/proxy_resolver_mac\\.cc$'], | 418 ['include', '^proxy/proxy_resolver_mac\\.cc$'], |
| 419 ['include', '^proxy/proxy_server_mac\\.cc$'], | 419 ['include', '^proxy/proxy_server_mac\\.cc$'], |
| 420 ['include', '^ocsp/nss_ocsp\\.cc$'], | 420 ['include', '^ocsp/nss_ocsp\\.cc$'], |
| 421 ['include', '^ocsp/nss_ocsp\\.h$'], | 421 ['include', '^ocsp/nss_ocsp\\.h$'], |
| 422 ], | 422 ], |
| 423 }], | 423 }], |
| 424 ], | 424 ], |
| 425 } | 425 } |
| OLD | NEW |