OLD | NEW |
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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
260 "quic/crypto/chacha20_poly1305_decrypter_openssl.cc", | 260 "quic/crypto/chacha20_poly1305_decrypter_openssl.cc", |
261 "quic/crypto/chacha20_poly1305_encrypter_openssl.cc", | 261 "quic/crypto/chacha20_poly1305_encrypter_openssl.cc", |
262 "quic/crypto/channel_id_openssl.cc", | 262 "quic/crypto/channel_id_openssl.cc", |
263 "quic/crypto/p256_key_exchange_openssl.cc", | 263 "quic/crypto/p256_key_exchange_openssl.cc", |
264 "quic/crypto/scoped_evp_aead_ctx.cc", | 264 "quic/crypto/scoped_evp_aead_ctx.cc", |
265 "quic/crypto/scoped_evp_aead_ctx.h", | 265 "quic/crypto/scoped_evp_aead_ctx.h", |
266 "socket/ssl_client_socket_openssl.cc", | 266 "socket/ssl_client_socket_openssl.cc", |
267 "socket/ssl_client_socket_openssl.h", | 267 "socket/ssl_client_socket_openssl.h", |
268 "socket/ssl_server_socket_openssl.cc", | 268 "socket/ssl_server_socket_openssl.cc", |
269 "socket/ssl_server_socket_openssl.h", | 269 "socket/ssl_server_socket_openssl.h", |
270 "socket/ssl_session_cache_openssl.cc", | |
271 "socket/ssl_session_cache_openssl.h", | |
272 "ssl/openssl_platform_key.h", | 270 "ssl/openssl_platform_key.h", |
273 "ssl/openssl_ssl_util.cc", | 271 "ssl/openssl_ssl_util.cc", |
274 "ssl/openssl_ssl_util.h", | 272 "ssl/openssl_ssl_util.h", |
| 273 "ssl/ssl_client_session_cache_openssl.cc", |
| 274 "ssl/ssl_client_session_cache_openssl.h", |
275 ] | 275 ] |
276 if (is_mac) { | 276 if (is_mac) { |
277 sources -= [ "ssl/openssl_platform_key_mac.cc" ] | 277 sources -= [ "ssl/openssl_platform_key_mac.cc" ] |
278 } | 278 } |
279 if (is_win) { | 279 if (is_win) { |
280 sources -= [ | 280 sources -= [ |
281 "cert/sha256_legacy_support_openssl_win.cc", | 281 "cert/sha256_legacy_support_openssl_win.cc", |
282 "ssl/openssl_platform_key_win.cc", | 282 "ssl/openssl_platform_key_win.cc", |
283 ] | 283 ] |
284 } | 284 } |
(...skipping 1008 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1293 sources -= [ | 1293 sources -= [ |
1294 "cert/nss_cert_database_chromeos_unittest.cc", | 1294 "cert/nss_cert_database_chromeos_unittest.cc", |
1295 "cert/nss_profile_filter_chromeos_unittest.cc", | 1295 "cert/nss_profile_filter_chromeos_unittest.cc", |
1296 ] | 1296 ] |
1297 } | 1297 } |
1298 } else { | 1298 } else { |
1299 sources -= [ | 1299 sources -= [ |
1300 "cert/x509_util_openssl_unittest.cc", | 1300 "cert/x509_util_openssl_unittest.cc", |
1301 "quic/test_tools/crypto_test_utils_openssl.cc", | 1301 "quic/test_tools/crypto_test_utils_openssl.cc", |
1302 "socket/ssl_client_socket_openssl_unittest.cc", | 1302 "socket/ssl_client_socket_openssl_unittest.cc", |
1303 "socket/ssl_session_cache_openssl_unittest.cc", | 1303 "ssl/ssl_client_session_cache_openssl_unittest.cc", |
1304 ] | 1304 ] |
1305 if (!is_desktop_linux && !is_chromeos) { | 1305 if (!is_desktop_linux && !is_chromeos) { |
1306 sources -= [ "cert/nss_cert_database_unittest.cc" ] | 1306 sources -= [ "cert/nss_cert_database_unittest.cc" ] |
1307 } | 1307 } |
1308 } | 1308 } |
1309 | 1309 |
1310 if (use_kerberos) { | 1310 if (use_kerberos) { |
1311 defines += [ "USE_KERBEROS" ] | 1311 defines += [ "USE_KERBEROS" ] |
1312 } else { | 1312 } else { |
1313 sources -= [ | 1313 sources -= [ |
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1502 "quic/quic_server_bin.cc", | 1502 "quic/quic_server_bin.cc", |
1503 ] | 1503 ] |
1504 deps = [ | 1504 deps = [ |
1505 ":quic_tools", | 1505 ":quic_tools", |
1506 ":net", | 1506 ":net", |
1507 "//base", | 1507 "//base", |
1508 "//third_party/boringssl", | 1508 "//third_party/boringssl", |
1509 ] | 1509 ] |
1510 } | 1510 } |
1511 } # !is_android && !is_win && !is_mac | 1511 } # !is_android && !is_win && !is_mac |
OLD | NEW |