Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(194)

Side by Side Diff: net/BUILD.gn

Issue 2833623002: Extract IsKnownRoot() functionality for testing if a certificate is a (Closed)
Patch Set: remove another unused header Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | net/cert/cert_verify_proc_mac.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 549 matching lines...) Expand 10 before | Expand all | Expand 10 after
560 "cert/internal/cert_issuer_source_nss.cc", 560 "cert/internal/cert_issuer_source_nss.cc",
561 "cert/internal/cert_issuer_source_nss.h", 561 "cert/internal/cert_issuer_source_nss.h",
562 "cert/internal/system_trust_store.cc", 562 "cert/internal/system_trust_store.cc",
563 "cert/internal/system_trust_store.h", 563 "cert/internal/system_trust_store.h",
564 "cert/internal/trust_store_mac.cc", 564 "cert/internal/trust_store_mac.cc",
565 "cert/internal/trust_store_mac.h", 565 "cert/internal/trust_store_mac.h",
566 "cert/internal/trust_store_nss.cc", 566 "cert/internal/trust_store_nss.cc",
567 "cert/internal/trust_store_nss.h", 567 "cert/internal/trust_store_nss.h",
568 "cert/jwk_serializer.cc", 568 "cert/jwk_serializer.cc",
569 "cert/jwk_serializer.h", 569 "cert/jwk_serializer.h",
570 "cert/known_roots_mac.cc",
571 "cert/known_roots_mac.h",
572 "cert/known_roots_nss.cc",
573 "cert/known_roots_nss.h",
574 "cert/known_roots_win.cc",
575 "cert/known_roots_win.h",
570 "cert/merkle_audit_proof.cc", 576 "cert/merkle_audit_proof.cc",
571 "cert/merkle_audit_proof.h", 577 "cert/merkle_audit_proof.h",
572 "cert/merkle_consistency_proof.cc", 578 "cert/merkle_consistency_proof.cc",
573 "cert/merkle_consistency_proof.h", 579 "cert/merkle_consistency_proof.h",
574 "cert/merkle_tree_leaf.cc", 580 "cert/merkle_tree_leaf.cc",
575 "cert/merkle_tree_leaf.h", 581 "cert/merkle_tree_leaf.h",
576 "cert/multi_log_ct_verifier.cc", 582 "cert/multi_log_ct_verifier.cc",
577 "cert/multi_log_ct_verifier.h", 583 "cert/multi_log_ct_verifier.h",
578 "cert/multi_threaded_cert_verifier.cc", 584 "cert/multi_threaded_cert_verifier.cc",
579 "cert/multi_threaded_cert_verifier.h", 585 "cert/multi_threaded_cert_verifier.h",
(...skipping 1220 matching lines...) Expand 10 before | Expand all | Expand 10 after
1800 deps += [ "//build/linux/libgio" ] 1806 deps += [ "//build/linux/libgio" ]
1801 } 1807 }
1802 1808
1803 if (!use_nss_certs) { 1809 if (!use_nss_certs) {
1804 sources -= [ 1810 sources -= [
1805 "cert/cert_database_nss.cc", 1811 "cert/cert_database_nss.cc",
1806 "cert/internal/cert_issuer_source_nss.cc", 1812 "cert/internal/cert_issuer_source_nss.cc",
1807 "cert/internal/cert_issuer_source_nss.h", 1813 "cert/internal/cert_issuer_source_nss.h",
1808 "cert/internal/trust_store_nss.cc", 1814 "cert/internal/trust_store_nss.cc",
1809 "cert/internal/trust_store_nss.h", 1815 "cert/internal/trust_store_nss.h",
1816 "cert/known_roots_nss.cc",
1817 "cert/known_roots_nss.h",
1810 "cert/nss_cert_database.cc", 1818 "cert/nss_cert_database.cc",
1811 "cert/nss_cert_database.h", 1819 "cert/nss_cert_database.h",
1812 "cert/x509_certificate_nss.cc", 1820 "cert/x509_certificate_nss.cc",
1813 "ssl/client_cert_store_nss.cc", 1821 "ssl/client_cert_store_nss.cc",
1814 "ssl/client_cert_store_nss.h", 1822 "ssl/client_cert_store_nss.h",
1815 "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp", 1823 "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp",
1816 "third_party/mozilla_security_manager/nsNSSCertificateDB.h", 1824 "third_party/mozilla_security_manager/nsNSSCertificateDB.h",
1817 "third_party/mozilla_security_manager/nsPKCS12Blob.cpp", 1825 "third_party/mozilla_security_manager/nsPKCS12Blob.cpp",
1818 "third_party/mozilla_security_manager/nsPKCS12Blob.h", 1826 "third_party/mozilla_security_manager/nsPKCS12Blob.h",
1819 ] 1827 ]
(...skipping 3974 matching lines...) Expand 10 before | Expand all | Expand 10 after
5794 ] 5802 ]
5795 deps = [ 5803 deps = [
5796 ":net_fuzzer_test_support", 5804 ":net_fuzzer_test_support",
5797 ":test_support", 5805 ":test_support",
5798 "//base", 5806 "//base",
5799 "//net", 5807 "//net",
5800 ] 5808 ]
5801 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" 5809 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict"
5802 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" 5810 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/"
5803 } 5811 }
OLDNEW
« no previous file with comments | « no previous file | net/cert/cert_verify_proc_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698