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

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: Created 8 years, 6 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 1675 matching lines...) Expand 10 before | Expand all | Expand 10 after
1686 'target_name': 'crl_set_dump', 1686 'target_name': 'crl_set_dump',
1687 'type': 'executable', 1687 'type': 'executable',
1688 'dependencies': [ 1688 'dependencies': [
1689 'net', 1689 'net',
1690 '../base/base.gyp:base', 1690 '../base/base.gyp:base',
1691 ], 1691 ],
1692 'sources': [ 1692 'sources': [
1693 'tools/crl_set_dump/crl_set_dump.cc', 1693 'tools/crl_set_dump/crl_set_dump.cc',
1694 ], 1694 ],
1695 }, 1695 },
1696 {
1697 'target_name': 'dns_fuzz_stub',
1698 'type': 'executable',
1699 'dependencies': [
1700 'net',
1701 '../base/base.gyp:base',
1702 ],
1703 'sources': [
1704 'tools/dns_fuzz_stub/dns_fuzz_stub.cc',
1705 ],
1706 },
1696 ], 1707 ],
1697 'conditions': [ 1708 'conditions': [
1698 ['os_posix == 1 and OS != "mac" and OS != "android"', { 1709 ['os_posix == 1 and OS != "mac" and OS != "android"', {
1699 'targets': [ 1710 'targets': [
1700 { 1711 {
1701 'target_name': 'flip_in_mem_edsm_server', 1712 'target_name': 'flip_in_mem_edsm_server',
1702 'type': 'executable', 1713 'type': 'executable',
1703 'cflags': [ 1714 'cflags': [
1704 '-Wno-deprecated', 1715 '-Wno-deprecated',
1705 ], 1716 ],
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
1894 'tools/dump_cache/url_to_filename_encoder.cc', 1905 'tools/dump_cache/url_to_filename_encoder.cc',
1895 'tools/dump_cache/url_to_filename_encoder.h', 1906 'tools/dump_cache/url_to_filename_encoder.h',
1896 'tools/dump_cache/url_utilities.h', 1907 'tools/dump_cache/url_utilities.h',
1897 'tools/dump_cache/url_utilities.cc', 1908 'tools/dump_cache/url_utilities.cc',
1898 ], 1909 ],
1899 }, 1910 },
1900 ], 1911 ],
1901 }], 1912 }],
1902 ], 1913 ],
1903 } 1914 }
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