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

Side by Side Diff: net/BUILD.gn

Issue 994263002: Rewrite session cache in OpenSSL ports. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: reebase Created 5 years, 8 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.gyp » ('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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 import("//build/config/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/module_args/v8.gni") 8 import("//build/module_args/v8.gni")
9 import("//url/config.gni") 9 import("//url/config.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 "quic/crypto/chacha20_poly1305_decrypter_openssl.cc", 264 "quic/crypto/chacha20_poly1305_decrypter_openssl.cc",
265 "quic/crypto/chacha20_poly1305_encrypter_openssl.cc", 265 "quic/crypto/chacha20_poly1305_encrypter_openssl.cc",
266 "quic/crypto/channel_id_openssl.cc", 266 "quic/crypto/channel_id_openssl.cc",
267 "quic/crypto/p256_key_exchange_openssl.cc", 267 "quic/crypto/p256_key_exchange_openssl.cc",
268 "quic/crypto/scoped_evp_aead_ctx.cc", 268 "quic/crypto/scoped_evp_aead_ctx.cc",
269 "quic/crypto/scoped_evp_aead_ctx.h", 269 "quic/crypto/scoped_evp_aead_ctx.h",
270 "socket/ssl_client_socket_openssl.cc", 270 "socket/ssl_client_socket_openssl.cc",
271 "socket/ssl_client_socket_openssl.h", 271 "socket/ssl_client_socket_openssl.h",
272 "socket/ssl_server_socket_openssl.cc", 272 "socket/ssl_server_socket_openssl.cc",
273 "socket/ssl_server_socket_openssl.h", 273 "socket/ssl_server_socket_openssl.h",
274 "socket/ssl_session_cache_openssl.cc",
275 "socket/ssl_session_cache_openssl.h",
276 "ssl/openssl_platform_key.h", 274 "ssl/openssl_platform_key.h",
277 "ssl/openssl_ssl_util.cc", 275 "ssl/openssl_ssl_util.cc",
278 "ssl/openssl_ssl_util.h", 276 "ssl/openssl_ssl_util.h",
277 "ssl/ssl_client_session_cache_openssl.cc",
278 "ssl/ssl_client_session_cache_openssl.h",
279 ] 279 ]
280 if (is_mac) { 280 if (is_mac) {
281 sources -= [ "ssl/openssl_platform_key_mac.cc" ] 281 sources -= [ "ssl/openssl_platform_key_mac.cc" ]
282 } 282 }
283 if (is_win) { 283 if (is_win) {
284 sources -= [ 284 sources -= [
285 "cert/sha256_legacy_support_openssl_win.cc", 285 "cert/sha256_legacy_support_openssl_win.cc",
286 "ssl/openssl_platform_key_win.cc", 286 "ssl/openssl_platform_key_win.cc",
287 ] 287 ]
288 } 288 }
(...skipping 1113 matching lines...) Expand 10 before | Expand all | Expand 10 after
1402 sources -= [ 1402 sources -= [
1403 "cert/nss_cert_database_chromeos_unittest.cc", 1403 "cert/nss_cert_database_chromeos_unittest.cc",
1404 "cert/nss_profile_filter_chromeos_unittest.cc", 1404 "cert/nss_profile_filter_chromeos_unittest.cc",
1405 ] 1405 ]
1406 } 1406 }
1407 } else { 1407 } else {
1408 sources -= [ 1408 sources -= [
1409 "cert/x509_util_openssl_unittest.cc", 1409 "cert/x509_util_openssl_unittest.cc",
1410 "quic/test_tools/crypto_test_utils_openssl.cc", 1410 "quic/test_tools/crypto_test_utils_openssl.cc",
1411 "socket/ssl_client_socket_openssl_unittest.cc", 1411 "socket/ssl_client_socket_openssl_unittest.cc",
1412 "socket/ssl_session_cache_openssl_unittest.cc", 1412 "ssl/ssl_client_session_cache_openssl_unittest.cc",
1413 ] 1413 ]
1414 if (!is_desktop_linux && !is_chromeos) { 1414 if (!is_desktop_linux && !is_chromeos) {
1415 sources -= [ "cert/nss_cert_database_unittest.cc" ] 1415 sources -= [ "cert/nss_cert_database_unittest.cc" ]
1416 } 1416 }
1417 } 1417 }
1418 1418
1419 if (use_kerberos) { 1419 if (use_kerberos) {
1420 defines += [ "USE_KERBEROS" ] 1420 defines += [ "USE_KERBEROS" ]
1421 } else { 1421 } else {
1422 sources -= [ 1422 sources -= [
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
1640 } else { 1640 } else {
1641 sources -= [ "proxy/proxy_resolver_perftest.cc" ] 1641 sources -= [ "proxy/proxy_resolver_perftest.cc" ]
1642 } 1642 }
1643 1643
1644 if (is_win && icu_use_data_file) { 1644 if (is_win && icu_use_data_file) {
1645 # This is needed to trigger the dll copy step on windows. 1645 # This is needed to trigger the dll copy step on windows.
1646 # TODO(mark): Specifying this here shouldn't be necessary. 1646 # TODO(mark): Specifying this here shouldn't be necessary.
1647 deps += [ "//third_party/icu:icudata" ] 1647 deps += [ "//third_party/icu:icudata" ]
1648 } 1648 }
1649 } 1649 }
OLDNEW
« no previous file with comments | « no previous file | net/net.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698