diff options
author | ttuttle@chromium.org <ttuttle@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-01 23:00:15 +0000 |
---|---|---|
committer | ttuttle@chromium.org <ttuttle@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-01 23:00:15 +0000 |
commit | 394bd2e5dbeb4cf09005027a257395a9af9ddce2 (patch) | |
tree | 90bfbff4aab36c553bfd458e9ce3549b682bc74c /net/net.gyp | |
parent | cc496723f3105ed60e8f9b62501cd1f40fe3e40d (diff) | |
download | chromium_src-394bd2e5dbeb4cf09005027a257395a9af9ddce2.zip chromium_src-394bd2e5dbeb4cf09005027a257395a9af9ddce2.tar.gz chromium_src-394bd2e5dbeb4cf09005027a257395a9af9ddce2.tar.bz2 |
Stub binary for fuzzing DNS resolver.
Initial version doesn't actually read the test case.
BUG=130751
TEST=Built locally (including with ASAN) and ran, and it works
Review URL: https://chromiumcodereview.appspot.com/10441027
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@140119 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/net.gyp')
-rw-r--r-- | net/net.gyp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net/net.gyp b/net/net.gyp index a2d1d55..b495bc4 100644 --- a/net/net.gyp +++ b/net/net.gyp @@ -1689,6 +1689,17 @@ 'tools/crl_set_dump/crl_set_dump.cc', ], }, + { + 'target_name': 'dns_fuzz_stub', + 'type': 'executable', + 'dependencies': [ + 'net', + '../base/base.gyp:base', + ], + 'sources': [ + 'tools/dns_fuzz_stub/dns_fuzz_stub.cc', + ], + }, ], 'conditions': [ ['os_posix == 1 and OS != "mac" and OS != "android"', { |