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

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: Put base dependency back 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
« no previous file with comments | « no previous file | net/tools/dns_fuzz_stub/dns_fuzz_stub.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1671 matching lines...) Expand 10 before | Expand all | Expand 10 after
1682 'target_name': 'crl_set_dump', 1682 'target_name': 'crl_set_dump',
1683 'type': 'executable', 1683 'type': 'executable',
1684 'dependencies': [ 1684 'dependencies': [
1685 'net', 1685 'net',
1686 '../base/base.gyp:base', 1686 '../base/base.gyp:base',
1687 ], 1687 ],
1688 'sources': [ 1688 'sources': [
1689 'tools/crl_set_dump/crl_set_dump.cc', 1689 'tools/crl_set_dump/crl_set_dump.cc',
1690 ], 1690 ],
1691 }, 1691 },
1692 {
1693 'target_name': 'dns_fuzz_stub',
1694 'type': 'executable',
1695 'dependencies': [
1696 'net',
1697 '../base/base.gyp:base',
1698 ],
1699 'sources': [
1700 'tools/dns_fuzz_stub/dns_fuzz_stub.cc',
1701 ],
1702 },
1692 ], 1703 ],
1693 'conditions': [ 1704 'conditions': [
1694 ['os_posix == 1 and OS != "mac" and OS != "android"', { 1705 ['os_posix == 1 and OS != "mac" and OS != "android"', {
1695 'targets': [ 1706 'targets': [
1696 { 1707 {
1697 'target_name': 'flip_in_mem_edsm_server', 1708 'target_name': 'flip_in_mem_edsm_server',
1698 'type': 'executable', 1709 'type': 'executable',
1699 'cflags': [ 1710 'cflags': [
1700 '-Wno-deprecated', 1711 '-Wno-deprecated',
1701 ], 1712 ],
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
1890 'tools/dump_cache/url_to_filename_encoder.cc', 1901 'tools/dump_cache/url_to_filename_encoder.cc',
1891 'tools/dump_cache/url_to_filename_encoder.h', 1902 'tools/dump_cache/url_to_filename_encoder.h',
1892 'tools/dump_cache/url_utilities.h', 1903 'tools/dump_cache/url_utilities.h',
1893 'tools/dump_cache/url_utilities.cc', 1904 'tools/dump_cache/url_utilities.cc',
1894 ], 1905 ],
1895 }, 1906 },
1896 ], 1907 ],
1897 }], 1908 }],
1898 ], 1909 ],
1899 } 1910 }
OLDNEW
« no previous file with comments | « no previous file | net/tools/dns_fuzz_stub/dns_fuzz_stub.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698