diff options
author | joth@chromium.org <joth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-16 13:58:24 +0000 |
---|---|---|
committer | joth@chromium.org <joth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-16 13:58:24 +0000 |
commit | 90e6d4bb076faff3b26f7c0d60801a9a72a63c8d (patch) | |
tree | e2f7b2e3a5b3859d5910244738f6d61f430e1fb4 /net/net.gyp | |
parent | 522ee4db794664f33a2d0b7e53da05c64d7320a2 (diff) | |
download | chromium_src-90e6d4bb076faff3b26f7c0d60801a9a72a63c8d.zip chromium_src-90e6d4bb076faff3b26f7c0d60801a9a72a63c8d.tar.gz chromium_src-90e6d4bb076faff3b26f7c0d60801a9a72a63c8d.tar.bz2 |
Add support for certificate name checking
There's nothing OpenSSL specific about this implementation, other than this is the only platform that does not already supply an implementation of this method.
BUG=60719
TEST=net_unittests --gtest_filter=X509CertificateCertificateNameVerifyTest.*
Review URL: http://codereview.chromium.org/4184004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@66263 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/net.gyp')
-rw-r--r-- | net/net.gyp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/net/net.gyp b/net/net.gyp index a2aff3b..1d73dd1 100644 --- a/net/net.gyp +++ b/net/net.gyp @@ -867,6 +867,7 @@ 'base/upload_data_stream_unittest.cc', 'base/x509_certificate_unittest.cc', 'base/x509_cert_types_unittest.cc', + 'base/x509_openssl_util_unittest.cc', 'disk_cache/addr_unittest.cc', 'disk_cache/backend_unittest.cc', 'disk_cache/bitmap_unittest.cc', @@ -1014,6 +1015,11 @@ 'base/dnssec_unittest.cc', ], }, + { # else, remove openssl specific tests + 'sources!': [ + 'base/x509_openssl_util_unittest.cc', + ], + } ], [ 'OS == "win"', { 'sources!': [ |