| 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 565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 576 "cert/test_keychain_search_list_mac.h", | 576 "cert/test_keychain_search_list_mac.h", |
| 577 "cert/test_root_certs.cc", | 577 "cert/test_root_certs.cc", |
| 578 "cert/test_root_certs.h", | 578 "cert/test_root_certs.h", |
| 579 "cert/test_root_certs_android.cc", | 579 "cert/test_root_certs_android.cc", |
| 580 "cert/test_root_certs_mac.cc", | 580 "cert/test_root_certs_mac.cc", |
| 581 "cert/test_root_certs_nss.cc", | 581 "cert/test_root_certs_nss.cc", |
| 582 "cert/test_root_certs_openssl.cc", | 582 "cert/test_root_certs_openssl.cc", |
| 583 "cert/test_root_certs_win.cc", | 583 "cert/test_root_certs_win.cc", |
| 584 "cert/x509_cert_types_mac.cc", | 584 "cert/x509_cert_types_mac.cc", |
| 585 "cert/x509_cert_types_win.cc", | 585 "cert/x509_cert_types_win.cc", |
| 586 "cert/x509_certificate_bytes.cc", |
| 586 "cert/x509_certificate_ios.cc", | 587 "cert/x509_certificate_ios.cc", |
| 587 "cert/x509_certificate_known_roots_win.h", | 588 "cert/x509_certificate_known_roots_win.h", |
| 588 "cert/x509_certificate_mac.cc", | 589 "cert/x509_certificate_mac.cc", |
| 589 "cert/x509_certificate_nss.cc", | 590 "cert/x509_certificate_nss.cc", |
| 590 "cert/x509_certificate_win.cc", | 591 "cert/x509_certificate_win.cc", |
| 591 "cert/x509_util_android.cc", | 592 "cert/x509_util_android.cc", |
| 592 "cert/x509_util_android.h", | 593 "cert/x509_util_android.h", |
| 594 "cert/x509_util_ios.cc", |
| 595 "cert/x509_util_ios.h", |
| 593 "cert/x509_util_mac.cc", | 596 "cert/x509_util_mac.cc", |
| 594 "cert/x509_util_mac.h", | 597 "cert/x509_util_mac.h", |
| 595 "cert/x509_util_nss.cc", | 598 "cert/x509_util_nss.cc", |
| 596 "cert/x509_util_nss.h", | 599 "cert/x509_util_nss.h", |
| 597 "cert_net/cert_net_fetcher_impl.cc", | 600 "cert_net/cert_net_fetcher_impl.cc", |
| 598 "cert_net/cert_net_fetcher_impl.h", | 601 "cert_net/cert_net_fetcher_impl.h", |
| 599 "cert_net/nss_ocsp.cc", | 602 "cert_net/nss_ocsp.cc", |
| 600 "cert_net/nss_ocsp.h", | 603 "cert_net/nss_ocsp.h", |
| 601 "cookies/canonical_cookie.cc", | 604 "cookies/canonical_cookie.cc", |
| 602 "cookies/canonical_cookie.h", | 605 "cookies/canonical_cookie.h", |
| (...skipping 1095 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1698 } | 1701 } |
| 1699 | 1702 |
| 1700 if (!enable_built_in_dns) { | 1703 if (!enable_built_in_dns) { |
| 1701 sources -= [ | 1704 sources -= [ |
| 1702 "dns/address_sorter_posix.cc", | 1705 "dns/address_sorter_posix.cc", |
| 1703 "dns/address_sorter_posix.h", | 1706 "dns/address_sorter_posix.h", |
| 1704 "dns/dns_client.cc", | 1707 "dns/dns_client.cc", |
| 1705 ] | 1708 ] |
| 1706 } | 1709 } |
| 1707 | 1710 |
| 1711 if (use_byte_certs) { |
| 1712 if (is_ios) { |
| 1713 sources -= [ "cert/x509_certificate_ios.cc" ] |
| 1714 } |
| 1715 if (is_mac) { |
| 1716 sources -= [ "cert/x509_certificate_mac.cc" ] |
| 1717 } |
| 1718 if (use_nss_certs) { |
| 1719 sources -= [ "cert/x509_certificate_nss.cc" ] |
| 1720 } |
| 1721 if (use_openssl_certs) { |
| 1722 sources -= [ "cert/x509_certificate_openssl.cc" ] |
| 1723 } |
| 1724 if (is_win) { |
| 1725 sources -= [ "cert/x509_certificate_win.cc" ] |
| 1726 } |
| 1727 } else { |
| 1728 sources -= [ "cert/x509_certificate_bytes.cc" ] |
| 1729 } |
| 1730 |
| 1708 if (!use_openssl_certs) { | 1731 if (!use_openssl_certs) { |
| 1709 sources -= [ | 1732 sources -= [ |
| 1710 "cert/cert_database_openssl.cc", | 1733 "cert/cert_database_openssl.cc", |
| 1711 "cert/cert_verify_proc_openssl.cc", | 1734 "cert/cert_verify_proc_openssl.cc", |
| 1712 "cert/cert_verify_proc_openssl.h", | 1735 "cert/cert_verify_proc_openssl.h", |
| 1713 "cert/test_root_certs_openssl.cc", | 1736 "cert/test_root_certs_openssl.cc", |
| 1714 "cert/x509_certificate_openssl.cc", | 1737 "cert/x509_certificate_openssl.cc", |
| 1715 "ssl/openssl_client_key_store.cc", | 1738 "ssl/openssl_client_key_store.cc", |
| 1716 "ssl/openssl_client_key_store.h", | 1739 "ssl/openssl_client_key_store.h", |
| 1717 ] | 1740 ] |
| (...skipping 3977 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5695 ] | 5718 ] |
| 5696 deps = [ | 5719 deps = [ |
| 5697 ":net_fuzzer_test_support", | 5720 ":net_fuzzer_test_support", |
| 5698 ":test_support", | 5721 ":test_support", |
| 5699 "//base", | 5722 "//base", |
| 5700 "//net", | 5723 "//net", |
| 5701 ] | 5724 ] |
| 5702 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" | 5725 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" |
| 5703 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" | 5726 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" |
| 5704 } | 5727 } |
| OLD | NEW |