| 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 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 net_shared_sources -= [ | 313 net_shared_sources -= [ |
| 314 "cert/cert_verify_proc_nss.cc", | 314 "cert/cert_verify_proc_nss.cc", |
| 315 "cert/cert_verify_proc_nss.h", | 315 "cert/cert_verify_proc_nss.h", |
| 316 "cert/test_root_certs_nss.cc", | 316 "cert/test_root_certs_nss.cc", |
| 317 "cert/x509_util_nss_certs.cc", | 317 "cert/x509_util_nss_certs.cc", |
| 318 "cert_net/nss_ocsp.cc", | 318 "cert_net/nss_ocsp.cc", |
| 319 "cert_net/nss_ocsp.h", | 319 "cert_net/nss_ocsp.h", |
| 320 ] | 320 ] |
| 321 } | 321 } |
| 322 | 322 |
| 323 if (is_ios && use_nss_verifier) { |
| 324 net_shared_sources -= [ |
| 325 "cert/cert_verify_proc_ios.cc", |
| 326 "cert/cert_verify_proc_ios.h", |
| 327 "cert/x509_certificate_openssl_ios.cc", |
| 328 ] |
| 329 } |
| 330 |
| 323 if (is_chromecast && use_nss_certs) { | 331 if (is_chromecast && use_nss_certs) { |
| 324 net_shared_sources += [ "ssl/ssl_platform_key_chromecast.cc" ] | 332 net_shared_sources += [ "ssl/ssl_platform_key_chromecast.cc" ] |
| 325 net_shared_sources -= [ "ssl/ssl_platform_key_nss.cc" ] | 333 net_shared_sources -= [ "ssl/ssl_platform_key_nss.cc" ] |
| 326 } | 334 } |
| 327 | 335 |
| 328 if (!enable_mdns) { | 336 if (!enable_mdns) { |
| 329 net_shared_sources -= [ | 337 net_shared_sources -= [ |
| 330 "dns/mdns_cache.cc", | 338 "dns/mdns_cache.cc", |
| 331 "dns/mdns_cache.h", | 339 "dns/mdns_cache.h", |
| 332 "dns/mdns_client.cc", | 340 "dns/mdns_client.cc", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 ] | 377 ] |
| 370 | 378 |
| 371 net_shared_sources -= [ "disk_cache/blockfile/file_posix.cc" ] | 379 net_shared_sources -= [ "disk_cache/blockfile/file_posix.cc" ] |
| 372 net_shared_deps += [ | 380 net_shared_deps += [ |
| 373 "//third_party/nss:nspr", | 381 "//third_party/nss:nspr", |
| 374 "//third_party/nss", | 382 "//third_party/nss", |
| 375 "//net/third_party/nss/ssl:libssl", | 383 "//net/third_party/nss/ssl:libssl", |
| 376 ] | 384 ] |
| 377 } | 385 } |
| 378 | 386 |
| 387 if (is_ios && !use_nss_verifier) { |
| 388 net_shared_sources += [ "cert/test_root_certs_mac.cc" ] |
| 389 } |
| 390 |
| 379 if (is_ios || is_mac) { | 391 if (is_ios || is_mac) { |
| 380 net_shared_sources += gypi_values.net_base_mac_ios_sources | 392 net_shared_sources += gypi_values.net_base_mac_ios_sources |
| 381 } | 393 } |
| 382 | 394 |
| 383 if (is_android) { | 395 if (is_android) { |
| 384 net_shared_deps += [ ":net_jni_headers" ] | 396 net_shared_deps += [ ":net_jni_headers" ] |
| 385 | 397 |
| 386 # Add some Linux sources that were excluded by the filter, but which | 398 # Add some Linux sources that were excluded by the filter, but which |
| 387 # are needed. | 399 # are needed. |
| 388 net_shared_unfiltered_sources += [ | 400 net_shared_unfiltered_sources += [ |
| (...skipping 1527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1916 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { | 1928 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { |
| 1917 sources = [ | 1929 sources = [ |
| 1918 "quic/quic_crypto_framer_parse_message_fuzzer.cc", | 1930 "quic/quic_crypto_framer_parse_message_fuzzer.cc", |
| 1919 ] | 1931 ] |
| 1920 deps = [ | 1932 deps = [ |
| 1921 ":net_fuzzer_test_support", | 1933 ":net_fuzzer_test_support", |
| 1922 "//base", | 1934 "//base", |
| 1923 "//net", | 1935 "//net", |
| 1924 ] | 1936 ] |
| 1925 } | 1937 } |
| OLD | NEW |