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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: net/net.gyp
diff --git a/net/net.gyp b/net/net.gyp
index f105fe62be95f954e654fff412d6c06b3f23fce7..53b5002fab1588211bff0f5baf2a2ac0b3548459 100644
--- a/net/net.gyp
+++ b/net/net.gyp
@@ -70,6 +70,14 @@
'base/cert_status_flags.h',
'base/cert_verifier.cc',
'base/cert_verifier.h',
+ 'base/cert_verify_proc_mac.cc',
+ 'base/cert_verify_proc_mac.h',
+ 'base/cert_verify_proc_nss.cc',
+ 'base/cert_verify_proc_nss.h',
+ 'base/cert_verify_proc_openssl.cc',
+ 'base/cert_verify_proc_openssl.h',
+ 'base/cert_verify_proc_win.cc',
+ 'base/cert_verify_proc_win.h',
'base/cert_verify_result.cc',
'base/cert_verify_result.h',
'base/completion_callback.h',
@@ -848,6 +856,8 @@
{ # else !use_openssl: remove the unneeded files
'sources!': [
'base/cert_database_openssl.cc',
+ 'base/cert_verify_proc_openssl.cc',
+ 'base/cert_verify_proc_openssl.h',
'base/crypto_module_openssl.cc',
'base/keygen_handler_openssl.cc',
'base/openssl_memory_private_key_store.cc',
@@ -923,6 +933,12 @@
'../build/linux/system.gyp:gdk',
],
}],
+ [ 'use_nss!=1', {
wtc 2012/03/06 23:10:14 Nit: the neighboring code uses spaces around == an
+ 'sources!': [
+ 'base/cert_verify_proc_nss.cc',
+ 'base/cert_verify_proc_nss.h',
+ ],
+ }],
[ 'OS == "win"', {
'sources!': [
'http/http_auth_handler_ntlm_portable.cc',
« 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