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_openssl_ios.cc", |
| 326 "cert/cert_verify_proc_openssl_ios.h", |
| 327 "cert/test_root_certs_openssl_ios.cc", |
| 328 "cert/x509_certificate_openssl_ios.cc", |
| 329 ] |
| 330 } |
| 331 |
323 if (is_chromecast && use_nss_certs) { | 332 if (is_chromecast && use_nss_certs) { |
324 net_shared_sources += [ "ssl/ssl_platform_key_chromecast.cc" ] | 333 net_shared_sources += [ "ssl/ssl_platform_key_chromecast.cc" ] |
325 net_shared_sources -= [ "ssl/ssl_platform_key_nss.cc" ] | 334 net_shared_sources -= [ "ssl/ssl_platform_key_nss.cc" ] |
326 } | 335 } |
327 | 336 |
328 if (!enable_mdns) { | 337 if (!enable_mdns) { |
329 net_shared_sources -= [ | 338 net_shared_sources -= [ |
330 "dns/mdns_cache.cc", | 339 "dns/mdns_cache.cc", |
331 "dns/mdns_cache.h", | 340 "dns/mdns_cache.h", |
332 "dns/mdns_client.cc", | 341 "dns/mdns_client.cc", |
(...skipping 1583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1916 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { | 1925 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { |
1917 sources = [ | 1926 sources = [ |
1918 "quic/quic_crypto_framer_parse_message_fuzzer.cc", | 1927 "quic/quic_crypto_framer_parse_message_fuzzer.cc", |
1919 ] | 1928 ] |
1920 deps = [ | 1929 deps = [ |
1921 ":net_fuzzer_test_support", | 1930 ":net_fuzzer_test_support", |
1922 "//base", | 1931 "//base", |
1923 "//net", | 1932 "//net", |
1924 ] | 1933 ] |
1925 } | 1934 } |
OLD | NEW |