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

Side by Side Diff: net/net.gyp

Issue 9584041: Create stubs for system certificate validation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Exclude CertVerifyProcNSS for non-NSS-only systems, for now Created 8 years, 9 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 8
9 'linux_link_kerberos%': 0, 9 'linux_link_kerberos%': 0,
10 'conditions': [ 10 'conditions': [
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 'base/cert_database.cc', 63 'base/cert_database.cc',
64 'base/cert_database.h', 64 'base/cert_database.h',
65 'base/cert_database_mac.cc', 65 'base/cert_database_mac.cc',
66 'base/cert_database_nss.cc', 66 'base/cert_database_nss.cc',
67 'base/cert_database_openssl.cc', 67 'base/cert_database_openssl.cc',
68 'base/cert_database_win.cc', 68 'base/cert_database_win.cc',
69 'base/cert_status_flags.cc', 69 'base/cert_status_flags.cc',
70 'base/cert_status_flags.h', 70 'base/cert_status_flags.h',
71 'base/cert_verifier.cc', 71 'base/cert_verifier.cc',
72 'base/cert_verifier.h', 72 'base/cert_verifier.h',
73 'base/cert_verify_proc_mac.cc',
74 'base/cert_verify_proc_mac.h',
75 'base/cert_verify_proc_nss.cc',
76 'base/cert_verify_proc_nss.h',
77 'base/cert_verify_proc_openssl.cc',
78 'base/cert_verify_proc_openssl.h',
79 'base/cert_verify_proc_win.cc',
80 'base/cert_verify_proc_win.h',
73 'base/cert_verify_result.cc', 81 'base/cert_verify_result.cc',
74 'base/cert_verify_result.h', 82 'base/cert_verify_result.h',
75 'base/completion_callback.h', 83 'base/completion_callback.h',
76 'base/connection_type_histograms.cc', 84 'base/connection_type_histograms.cc',
77 'base/connection_type_histograms.h', 85 'base/connection_type_histograms.h',
78 'base/cookie_monster.cc', 86 'base/cookie_monster.cc',
79 'base/cookie_monster.h', 87 'base/cookie_monster.h',
80 'base/cookie_options.h', 88 'base/cookie_options.h',
81 'base/cookie_store.cc', 89 'base/cookie_store.cc',
82 'base/cookie_store.h', 90 'base/cookie_store.h',
(...skipping 758 matching lines...) Expand 10 before | Expand all | Expand 10 after
841 'third_party/mozilla_security_manager/nsNSSCertificateDB.h', 849 'third_party/mozilla_security_manager/nsNSSCertificateDB.h',
842 'third_party/mozilla_security_manager/nsNSSCertTrust.cpp', 850 'third_party/mozilla_security_manager/nsNSSCertTrust.cpp',
843 'third_party/mozilla_security_manager/nsNSSCertTrust.h', 851 'third_party/mozilla_security_manager/nsNSSCertTrust.h',
844 'third_party/mozilla_security_manager/nsPKCS12Blob.cpp', 852 'third_party/mozilla_security_manager/nsPKCS12Blob.cpp',
845 'third_party/mozilla_security_manager/nsPKCS12Blob.h', 853 'third_party/mozilla_security_manager/nsPKCS12Blob.h',
846 ], 854 ],
847 }, 855 },
848 { # else !use_openssl: remove the unneeded files 856 { # else !use_openssl: remove the unneeded files
849 'sources!': [ 857 'sources!': [
850 'base/cert_database_openssl.cc', 858 'base/cert_database_openssl.cc',
859 'base/cert_verify_proc_openssl.cc',
860 'base/cert_verify_proc_openssl.h',
851 'base/crypto_module_openssl.cc', 861 'base/crypto_module_openssl.cc',
852 'base/keygen_handler_openssl.cc', 862 'base/keygen_handler_openssl.cc',
853 'base/openssl_memory_private_key_store.cc', 863 'base/openssl_memory_private_key_store.cc',
854 'base/openssl_private_key_store.h', 864 'base/openssl_private_key_store.h',
855 'base/test_root_certs_openssl.cc', 865 'base/test_root_certs_openssl.cc',
856 'base/x509_certificate_openssl.cc', 866 'base/x509_certificate_openssl.cc',
857 'base/x509_util_openssl.cc', 867 'base/x509_util_openssl.cc',
858 'base/x509_util_openssl.h', 868 'base/x509_util_openssl.h',
859 'socket/ssl_client_socket_openssl.cc', 869 'socket/ssl_client_socket_openssl.cc',
860 'socket/ssl_client_socket_openssl.h', 870 'socket/ssl_client_socket_openssl.h',
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
916 'third_party/mozilla_security_manager/nsPKCS12Blob.cpp', 926 'third_party/mozilla_security_manager/nsPKCS12Blob.cpp',
917 'third_party/mozilla_security_manager/nsPKCS12Blob.h', 927 'third_party/mozilla_security_manager/nsPKCS12Blob.h',
918 ], 928 ],
919 }, 929 },
920 ], 930 ],
921 [ 'toolkit_uses_gtk == 1', { 931 [ 'toolkit_uses_gtk == 1', {
922 'dependencies': [ 932 'dependencies': [
923 '../build/linux/system.gyp:gdk', 933 '../build/linux/system.gyp:gdk',
924 ], 934 ],
925 }], 935 }],
936 [ 'use_nss!=1', {
wtc 2012/03/06 23:10:14 Nit: the neighboring code uses spaces around == an
937 'sources!': [
938 'base/cert_verify_proc_nss.cc',
939 'base/cert_verify_proc_nss.h',
940 ],
941 }],
926 [ 'OS == "win"', { 942 [ 'OS == "win"', {
927 'sources!': [ 943 'sources!': [
928 'http/http_auth_handler_ntlm_portable.cc', 944 'http/http_auth_handler_ntlm_portable.cc',
929 'socket/tcp_client_socket_libevent.cc', 945 'socket/tcp_client_socket_libevent.cc',
930 'socket/tcp_client_socket_libevent.h', 946 'socket/tcp_client_socket_libevent.h',
931 'socket/tcp_server_socket_libevent.cc', 947 'socket/tcp_server_socket_libevent.cc',
932 'socket/tcp_server_socket_libevent.h', 948 'socket/tcp_server_socket_libevent.h',
933 'udp/udp_socket_libevent.cc', 949 'udp/udp_socket_libevent.cc',
934 'udp/udp_socket_libevent.h', 950 'udp/udp_socket_libevent.h',
935 ], 951 ],
(...skipping 838 matching lines...) Expand 10 before | Expand all | Expand 10 after
1774 'tools/dump_cache/url_to_filename_encoder.cc', 1790 'tools/dump_cache/url_to_filename_encoder.cc',
1775 'tools/dump_cache/url_to_filename_encoder.h', 1791 'tools/dump_cache/url_to_filename_encoder.h',
1776 'tools/dump_cache/url_utilities.h', 1792 'tools/dump_cache/url_utilities.h',
1777 'tools/dump_cache/url_utilities.cc', 1793 'tools/dump_cache/url_utilities.cc',
1778 ], 1794 ],
1779 }, 1795 },
1780 ], 1796 ],
1781 }], 1797 }],
1782 ], 1798 ],
1783 } 1799 }
OLDNEW
« net/base/x509_certificate_unittest.cc ('K') | « net/base/x509_certificate_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698