OLD | NEW |
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 1678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1689 testonly = true | 1689 testonly = true |
1690 | 1690 |
1691 sources = [ | 1691 sources = [ |
1692 "base/fuzzed_data_provider.cc", | 1692 "base/fuzzed_data_provider.cc", |
1693 "base/fuzzed_data_provider.h", | 1693 "base/fuzzed_data_provider.h", |
1694 "base/fuzzer_test_support.cc", | 1694 "base/fuzzer_test_support.cc", |
1695 "socket/fuzzed_socket.cc", | 1695 "socket/fuzzed_socket.cc", |
1696 "socket/fuzzed_socket.h", | 1696 "socket/fuzzed_socket.h", |
1697 "socket/fuzzed_socket_factory.cc", | 1697 "socket/fuzzed_socket_factory.cc", |
1698 "socket/fuzzed_socket_factory.h", | 1698 "socket/fuzzed_socket_factory.h", |
| 1699 "udp/fuzzed_datagram_client_socket.cc", |
| 1700 "udp/fuzzed_datagram_client_socket.h", |
1699 ] | 1701 ] |
1700 deps = [ | 1702 deps = [ |
1701 "//base", | 1703 "//base", |
1702 "//base:i18n", | 1704 "//base:i18n", |
1703 "//net", | 1705 "//net", |
1704 ] | 1706 ] |
1705 } | 1707 } |
1706 | 1708 |
1707 fuzzer_test("net_data_job_fuzzer") { | 1709 fuzzer_test("net_data_job_fuzzer") { |
1708 sources = [ | 1710 sources = [ |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1866 sources = [ | 1868 sources = [ |
1867 "dns/dns_hosts_parse_fuzzer.cc", | 1869 "dns/dns_hosts_parse_fuzzer.cc", |
1868 ] | 1870 ] |
1869 deps = [ | 1871 deps = [ |
1870 ":net_fuzzer_test_support", | 1872 ":net_fuzzer_test_support", |
1871 "//base", | 1873 "//base", |
1872 "//net", | 1874 "//net", |
1873 ] | 1875 ] |
1874 } | 1876 } |
1875 | 1877 |
| 1878 fuzzer_test("net_host_resolver_impl_fuzzer") { |
| 1879 sources = [ |
| 1880 "dns/fuzzed_host_resolver.cc", |
| 1881 "dns/fuzzed_host_resolver.h", |
| 1882 "dns/host_resolver_impl_fuzzer.cc", |
| 1883 ] |
| 1884 deps = [ |
| 1885 ":net_fuzzer_test_support", |
| 1886 ":test_support", |
| 1887 "//base", |
| 1888 "//net", |
| 1889 ] |
| 1890 dict = "data/dns/dns.dict" |
| 1891 } |
| 1892 |
1876 fuzzer_test("net_http_stream_parser_fuzzer") { | 1893 fuzzer_test("net_http_stream_parser_fuzzer") { |
1877 sources = [ | 1894 sources = [ |
1878 "http/http_stream_parser_fuzzer.cc", | 1895 "http/http_stream_parser_fuzzer.cc", |
1879 ] | 1896 ] |
1880 deps = [ | 1897 deps = [ |
1881 ":net_fuzzer_test_support", | 1898 ":net_fuzzer_test_support", |
1882 ":test_support", | 1899 ":test_support", |
1883 "//base", | 1900 "//base", |
1884 "//net", | 1901 "//net", |
1885 ] | 1902 ] |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1995 "url_request/url_request_fuzzer.cc", | 2012 "url_request/url_request_fuzzer.cc", |
1996 ] | 2013 ] |
1997 deps = [ | 2014 deps = [ |
1998 ":net_fuzzer_test_support", | 2015 ":net_fuzzer_test_support", |
1999 ":test_support", | 2016 ":test_support", |
2000 "//base", | 2017 "//base", |
2001 "//net", | 2018 "//net", |
2002 ] | 2019 ] |
2003 dict = "data/http/http.dict" | 2020 dict = "data/http/http.dict" |
2004 } | 2021 } |
OLD | NEW |