| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
| 7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
| 8 import("//build/config/crypto.gni") | 8 import("//build/config/crypto.gni") |
| 9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 "socket/ssl_server_socket_openssl.h", | 217 "socket/ssl_server_socket_openssl.h", |
| 218 "ssl/openssl_ssl_util.cc", | 218 "ssl/openssl_ssl_util.cc", |
| 219 "ssl/openssl_ssl_util.h", | 219 "ssl/openssl_ssl_util.h", |
| 220 "ssl/ssl_client_session_cache_openssl.cc", | 220 "ssl/ssl_client_session_cache_openssl.cc", |
| 221 "ssl/ssl_client_session_cache_openssl.h", | 221 "ssl/ssl_client_session_cache_openssl.h", |
| 222 "ssl/ssl_key_logger.cc", | 222 "ssl/ssl_key_logger.cc", |
| 223 "ssl/ssl_key_logger.h", | 223 "ssl/ssl_key_logger.h", |
| 224 "ssl/ssl_platform_key.h", | 224 "ssl/ssl_platform_key.h", |
| 225 "ssl/ssl_platform_key_task_runner.cc", | 225 "ssl/ssl_platform_key_task_runner.cc", |
| 226 "ssl/ssl_platform_key_task_runner.h", | 226 "ssl/ssl_platform_key_task_runner.h", |
| 227 "ssl/ssl_platform_key_test.cc", |
| 228 "ssl/ssl_platform_key_test.h", |
| 227 "ssl/threaded_ssl_private_key.cc", | 229 "ssl/threaded_ssl_private_key.cc", |
| 228 "ssl/threaded_ssl_private_key.h", | 230 "ssl/threaded_ssl_private_key.h", |
| 229 ] | 231 ] |
| 230 } | 232 } |
| 231 | 233 |
| 232 if (!use_openssl_certs) { | 234 if (!use_openssl_certs) { |
| 233 net_shared_sources -= [ | 235 net_shared_sources -= [ |
| 234 "base/crypto_module_openssl.cc", | 236 "base/crypto_module_openssl.cc", |
| 235 "base/keygen_handler_openssl.cc", | 237 "base/keygen_handler_openssl.cc", |
| 236 "base/openssl_private_key_store.h", | 238 "base/openssl_private_key_store.h", |
| (...skipping 1235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1472 "cert/nss_profile_filter_chromeos_unittest.cc", | 1474 "cert/nss_profile_filter_chromeos_unittest.cc", |
| 1473 ] | 1475 ] |
| 1474 } | 1476 } |
| 1475 } | 1477 } |
| 1476 | 1478 |
| 1477 if (use_openssl) { | 1479 if (use_openssl) { |
| 1478 sources -= [ "quic/test_tools/crypto_test_utils_nss.cc" ] | 1480 sources -= [ "quic/test_tools/crypto_test_utils_nss.cc" ] |
| 1479 } else { | 1481 } else { |
| 1480 sources -= [ | 1482 sources -= [ |
| 1481 "quic/test_tools/crypto_test_utils_openssl.cc", | 1483 "quic/test_tools/crypto_test_utils_openssl.cc", |
| 1482 "socket/ssl_client_socket_openssl_unittest.cc", | |
| 1483 "ssl/ssl_client_session_cache_openssl_unittest.cc", | 1484 "ssl/ssl_client_session_cache_openssl_unittest.cc", |
| 1484 ] | 1485 ] |
| 1485 } | 1486 } |
| 1486 | 1487 |
| 1487 if (use_kerberos) { | 1488 if (use_kerberos) { |
| 1488 defines += [ "USE_KERBEROS" ] | 1489 defines += [ "USE_KERBEROS" ] |
| 1489 } | 1490 } |
| 1490 | 1491 |
| 1491 # These are excluded on Android, because the actual Kerberos support, which | 1492 # These are excluded on Android, because the actual Kerberos support, which |
| 1492 # these test, is in a separate app on Android. | 1493 # these test, is in a separate app on Android. |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1737 } else { | 1738 } else { |
| 1738 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1739 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
| 1739 } | 1740 } |
| 1740 } | 1741 } |
| 1741 | 1742 |
| 1742 buildflag_header("features") { | 1743 buildflag_header("features") { |
| 1743 header = "net_features.h" | 1744 header = "net_features.h" |
| 1744 | 1745 |
| 1745 flags = [ "ENABLE_BIDIRECTIONAL_STREAM=$enable_bidirectional_stream" ] | 1746 flags = [ "ENABLE_BIDIRECTIONAL_STREAM=$enable_bidirectional_stream" ] |
| 1746 } | 1747 } |
| OLD | NEW |