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

Side by Side Diff: net/net.gyp

Issue 10441027: Stub binary for fuzzing DNS resolver. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix szym's comments Created 8 years, 7 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 1666 matching lines...) Expand 10 before | Expand all | Expand 10 after
1677 'target_name': 'crl_set_dump', 1677 'target_name': 'crl_set_dump',
1678 'type': 'executable', 1678 'type': 'executable',
1679 'dependencies': [ 1679 'dependencies': [
1680 'net', 1680 'net',
1681 '../base/base.gyp:base', 1681 '../base/base.gyp:base',
1682 ], 1682 ],
1683 'sources': [ 1683 'sources': [
1684 'tools/crl_set_dump/crl_set_dump.cc', 1684 'tools/crl_set_dump/crl_set_dump.cc',
1685 ], 1685 ],
1686 }, 1686 },
1687 {
1688 'target_name': 'dns_fuzz_stub',
1689 'type': 'executable',
1690 'dependencies': [
1691 'net',
1692 '../base/base.gyp:base',
cbentzel 2012/05/25 01:53:55 The explicit dependency on base is the same as oth
1693 ],
1694 'sources': [
1695 'tools/dns_fuzz_stub/dns_fuzz_stub.cc',
1696 ],
1697 },
1687 ], 1698 ],
1688 'conditions': [ 1699 'conditions': [
1689 ['os_posix == 1 and OS != "mac" and OS != "android"', { 1700 ['os_posix == 1 and OS != "mac" and OS != "android"', {
1690 'targets': [ 1701 'targets': [
1691 { 1702 {
1692 'target_name': 'flip_in_mem_edsm_server', 1703 'target_name': 'flip_in_mem_edsm_server',
1693 'type': 'executable', 1704 'type': 'executable',
1694 'cflags': [ 1705 'cflags': [
1695 '-Wno-deprecated', 1706 '-Wno-deprecated',
1696 ], 1707 ],
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
1860 'tools/dump_cache/url_to_filename_encoder.cc', 1871 'tools/dump_cache/url_to_filename_encoder.cc',
1861 'tools/dump_cache/url_to_filename_encoder.h', 1872 'tools/dump_cache/url_to_filename_encoder.h',
1862 'tools/dump_cache/url_utilities.h', 1873 'tools/dump_cache/url_utilities.h',
1863 'tools/dump_cache/url_utilities.cc', 1874 'tools/dump_cache/url_utilities.cc',
1864 ], 1875 ],
1865 }, 1876 },
1866 ], 1877 ],
1867 }], 1878 }],
1868 ], 1879 ],
1869 } 1880 }
OLDNEW
« no previous file with comments | « no previous file | net/tools/dns_fuzz_stub/dns_fuzz_stub.cc » ('j') | net/tools/dns_fuzz_stub/dns_fuzz_stub.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698