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

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: rsleevi comments (buh, also a rebase, sorry) Created 5 years, 9 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') | net/socket/ssl_client_socket_openssl.cc » ('J')
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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 "quic/crypto/chacha20_poly1305_decrypter_openssl.cc", 261 "quic/crypto/chacha20_poly1305_decrypter_openssl.cc",
262 "quic/crypto/chacha20_poly1305_encrypter_openssl.cc", 262 "quic/crypto/chacha20_poly1305_encrypter_openssl.cc",
263 "quic/crypto/channel_id_openssl.cc", 263 "quic/crypto/channel_id_openssl.cc",
264 "quic/crypto/p256_key_exchange_openssl.cc", 264 "quic/crypto/p256_key_exchange_openssl.cc",
265 "quic/crypto/scoped_evp_aead_ctx.cc", 265 "quic/crypto/scoped_evp_aead_ctx.cc",
266 "quic/crypto/scoped_evp_aead_ctx.h", 266 "quic/crypto/scoped_evp_aead_ctx.h",
267 "socket/ssl_client_socket_openssl.cc", 267 "socket/ssl_client_socket_openssl.cc",
268 "socket/ssl_client_socket_openssl.h", 268 "socket/ssl_client_socket_openssl.h",
269 "socket/ssl_server_socket_openssl.cc", 269 "socket/ssl_server_socket_openssl.cc",
270 "socket/ssl_server_socket_openssl.h", 270 "socket/ssl_server_socket_openssl.h",
271 "socket/ssl_session_cache_openssl.cc",
272 "socket/ssl_session_cache_openssl.h",
273 "ssl/openssl_platform_key.h", 271 "ssl/openssl_platform_key.h",
274 "ssl/openssl_ssl_util.cc", 272 "ssl/openssl_ssl_util.cc",
275 "ssl/openssl_ssl_util.h", 273 "ssl/openssl_ssl_util.h",
274 "ssl/ssl_client_session_cache_openssl.cc",
275 "ssl/ssl_client_session_cache_openssl.h",
276 ] 276 ]
277 if (is_mac) { 277 if (is_mac) {
278 sources -= [ "ssl/openssl_platform_key_mac.cc" ] 278 sources -= [ "ssl/openssl_platform_key_mac.cc" ]
279 } 279 }
280 if (is_win) { 280 if (is_win) {
281 sources -= [ 281 sources -= [
282 "cert/sha256_legacy_support_openssl_win.cc", 282 "cert/sha256_legacy_support_openssl_win.cc",
283 "ssl/openssl_platform_key_win.cc", 283 "ssl/openssl_platform_key_win.cc",
284 ] 284 ]
285 } 285 }
(...skipping 1094 matching lines...) Expand 10 before | Expand all | Expand 10 after
1380 sources -= [ 1380 sources -= [
1381 "cert/nss_cert_database_chromeos_unittest.cc", 1381 "cert/nss_cert_database_chromeos_unittest.cc",
1382 "cert/nss_profile_filter_chromeos_unittest.cc", 1382 "cert/nss_profile_filter_chromeos_unittest.cc",
1383 ] 1383 ]
1384 } 1384 }
1385 } else { 1385 } else {
1386 sources -= [ 1386 sources -= [
1387 "cert/x509_util_openssl_unittest.cc", 1387 "cert/x509_util_openssl_unittest.cc",
1388 "quic/test_tools/crypto_test_utils_openssl.cc", 1388 "quic/test_tools/crypto_test_utils_openssl.cc",
1389 "socket/ssl_client_socket_openssl_unittest.cc", 1389 "socket/ssl_client_socket_openssl_unittest.cc",
1390 "socket/ssl_session_cache_openssl_unittest.cc", 1390 "ssl/ssl_client_session_cache_openssl_unittest.cc",
1391 ] 1391 ]
1392 if (!is_desktop_linux && !is_chromeos) { 1392 if (!is_desktop_linux && !is_chromeos) {
1393 sources -= [ "cert/nss_cert_database_unittest.cc" ] 1393 sources -= [ "cert/nss_cert_database_unittest.cc" ]
1394 } 1394 }
1395 } 1395 }
1396 1396
1397 if (use_kerberos) { 1397 if (use_kerberos) {
1398 defines += [ "USE_KERBEROS" ] 1398 defines += [ "USE_KERBEROS" ]
1399 } else { 1399 } else {
1400 sources -= [ 1400 sources -= [
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
1632 } else { 1632 } else {
1633 sources -= [ "proxy/proxy_resolver_perftest.cc" ] 1633 sources -= [ "proxy/proxy_resolver_perftest.cc" ]
1634 } 1634 }
1635 1635
1636 if (is_win && icu_use_data_file) { 1636 if (is_win && icu_use_data_file) {
1637 # This is needed to trigger the dll copy step on windows. 1637 # This is needed to trigger the dll copy step on windows.
1638 # TODO(mark): Specifying this here shouldn't be necessary. 1638 # TODO(mark): Specifying this here shouldn't be necessary.
1639 deps += [ "//third_party/icu:icudata" ] 1639 deps += [ "//third_party/icu:icudata" ]
1640 } 1640 }
1641 } 1641 }
OLDNEW
« no previous file with comments | « no previous file | net/net.gyp » ('j') | net/socket/ssl_client_socket_openssl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698