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

Side by Side Diff: net/BUILD.gn

Issue 1946793002: net: Add fuzzer for HostResolverImpl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge, fix build Created 4 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
« no previous file with comments | « no previous file | net/base/fuzzed_data_provider.h » ('j') | net/base/fuzzed_data_provider.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 import("//build/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//build/config/compiler/compiler.gni") 7 import("//build/config/compiler/compiler.gni")
8 import("//build/config/crypto.gni") 8 import("//build/config/crypto.gni")
9 import("//build/config/features.gni") 9 import("//build/config/features.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 1709 matching lines...) Expand 10 before | Expand all | Expand 10 after
1720 testonly = true 1720 testonly = true
1721 1721
1722 sources = [ 1722 sources = [
1723 "base/fuzzed_data_provider.cc", 1723 "base/fuzzed_data_provider.cc",
1724 "base/fuzzed_data_provider.h", 1724 "base/fuzzed_data_provider.h",
1725 "base/fuzzer_test_support.cc", 1725 "base/fuzzer_test_support.cc",
1726 "socket/fuzzed_socket.cc", 1726 "socket/fuzzed_socket.cc",
1727 "socket/fuzzed_socket.h", 1727 "socket/fuzzed_socket.h",
1728 "socket/fuzzed_socket_factory.cc", 1728 "socket/fuzzed_socket_factory.cc",
1729 "socket/fuzzed_socket_factory.h", 1729 "socket/fuzzed_socket_factory.h",
1730 "udp/fuzzed_datagram_client_socket.cc",
1731 "udp/fuzzed_datagram_client_socket.h",
1730 ] 1732 ]
1731 deps = [ 1733 deps = [
1732 "//base", 1734 "//base",
1733 "//base:i18n", 1735 "//base:i18n",
1734 "//net", 1736 "//net",
1735 ] 1737 ]
1736 } 1738 }
1737 1739
1738 fuzzer_test("net_data_job_fuzzer") { 1740 fuzzer_test("net_data_job_fuzzer") {
1739 sources = [ 1741 sources = [
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
1897 sources = [ 1899 sources = [
1898 "dns/dns_hosts_parse_fuzzer.cc", 1900 "dns/dns_hosts_parse_fuzzer.cc",
1899 ] 1901 ]
1900 deps = [ 1902 deps = [
1901 ":net_fuzzer_test_support", 1903 ":net_fuzzer_test_support",
1902 "//base", 1904 "//base",
1903 "//net", 1905 "//net",
1904 ] 1906 ]
1905 } 1907 }
1906 1908
1909 fuzzer_test("net_host_resolver_impl_fuzzer") {
1910 sources = [
1911 "dns/fuzzed_host_resolver.cc",
1912 "dns/fuzzed_host_resolver.h",
1913 "dns/host_resolver_impl_fuzzer.cc",
1914 ]
1915 deps = [
1916 ":net_fuzzer_test_support",
1917 ":test_support",
1918 "//base",
1919 "//net",
1920 ]
1921 dict = "data/dns/dns.dict"
1922 }
1923
1907 fuzzer_test("net_http_stream_parser_fuzzer") { 1924 fuzzer_test("net_http_stream_parser_fuzzer") {
1908 sources = [ 1925 sources = [
1909 "http/http_stream_parser_fuzzer.cc", 1926 "http/http_stream_parser_fuzzer.cc",
1910 ] 1927 ]
1911 deps = [ 1928 deps = [
1912 ":net_fuzzer_test_support", 1929 ":net_fuzzer_test_support",
1913 ":test_support", 1930 ":test_support",
1914 "//base", 1931 "//base",
1915 "//net", 1932 "//net",
1916 ] 1933 ]
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
2026 "url_request/url_request_fuzzer.cc", 2043 "url_request/url_request_fuzzer.cc",
2027 ] 2044 ]
2028 deps = [ 2045 deps = [
2029 ":net_fuzzer_test_support", 2046 ":net_fuzzer_test_support",
2030 ":test_support", 2047 ":test_support",
2031 "//base", 2048 "//base",
2032 "//net", 2049 "//net",
2033 ] 2050 ]
2034 dict = "data/http/http.dict" 2051 dict = "data/http/http.dict"
2035 } 2052 }
OLDNEW
« no previous file with comments | « no previous file | net/base/fuzzed_data_provider.h » ('j') | net/base/fuzzed_data_provider.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698