diff options
author | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-09 20:13:23 +0000 |
---|---|---|
committer | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-09 20:13:23 +0000 |
commit | b40f05a835ecd5ff30e7f87a89837eee059bfadc (patch) | |
tree | 6099b52325283e33e1a79892b9646d12cb0da7f5 /net/net.gyp | |
parent | cf59e2dae675b777ce193268ec4040de63e4b4f1 (diff) | |
download | chromium_src-b40f05a835ecd5ff30e7f87a89837eee059bfadc.zip chromium_src-b40f05a835ecd5ff30e7f87a89837eee059bfadc.tar.gz chromium_src-b40f05a835ecd5ff30e7f87a89837eee059bfadc.tar.bz2 |
net: add DNSSEC tool and CNAME support.
This change adds support for DNSSEC chains with CNAMEs. I.e. it's not
possible to prove records about $domain where $domain is a CNAME.
It also adds a tiny, standalone tool to run the verification code from
the command line.
BUG=none
TEST=net_unittests
http://codereview.chromium.org/3301015/show
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@58986 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/net.gyp')
-rw-r--r-- | net/net.gyp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/net/net.gyp b/net/net.gyp index d781fb3..a967a35 100644 --- a/net/net.gyp +++ b/net/net.gyp @@ -1137,6 +1137,16 @@ ], }, { + 'target_name': 'dnssec_chain_verify', + 'type': 'executable', + 'dependencies': [ + 'net_base', + ], + 'sources': [ + 'tools/dnssec_chain_verify/dnssec_chain_verify.cc', + ] + }, + { 'target_name': 'ssl_false_start_blacklist_process', 'type': 'executable', 'toolsets': ['host'], |