| 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 1771 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1782 sources = [ | 1782 sources = [ |
| 1783 "dns/dns_record_fuzzer.cc", | 1783 "dns/dns_record_fuzzer.cc", |
| 1784 ] | 1784 ] |
| 1785 deps = [ | 1785 deps = [ |
| 1786 ":net_fuzzer_test_support", | 1786 ":net_fuzzer_test_support", |
| 1787 "//base", | 1787 "//base", |
| 1788 "//net", | 1788 "//net", |
| 1789 ] | 1789 ] |
| 1790 } | 1790 } |
| 1791 | 1791 |
| 1792 fuzzer_test("net_dns_hosts_parse_fuzzer") { |
| 1793 sources = [ |
| 1794 "dns/dns_hosts_parse_fuzzer.cc", |
| 1795 ] |
| 1796 deps = [ |
| 1797 ":net_fuzzer_test_support", |
| 1798 "//base", |
| 1799 "//net", |
| 1800 ] |
| 1801 } |
| 1802 |
| 1792 fuzzer_test("net_http_stream_parser_fuzzer") { | 1803 fuzzer_test("net_http_stream_parser_fuzzer") { |
| 1793 sources = [ | 1804 sources = [ |
| 1794 "http/http_stream_parser_fuzzer.cc", | 1805 "http/http_stream_parser_fuzzer.cc", |
| 1795 ] | 1806 ] |
| 1796 deps = [ | 1807 deps = [ |
| 1797 ":net_fuzzer_test_support", | 1808 ":net_fuzzer_test_support", |
| 1798 ":test_support", | 1809 ":test_support", |
| 1799 "//base", | 1810 "//base", |
| 1800 "//net", | 1811 "//net", |
| 1801 ] | 1812 ] |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1898 sources = [ | 1909 sources = [ |
| 1899 "socket/socks5_client_socket_fuzzer.cc", | 1910 "socket/socks5_client_socket_fuzzer.cc", |
| 1900 ] | 1911 ] |
| 1901 deps = [ | 1912 deps = [ |
| 1902 ":net_fuzzer_test_support", | 1913 ":net_fuzzer_test_support", |
| 1903 ":test_support", | 1914 ":test_support", |
| 1904 "//base", | 1915 "//base", |
| 1905 "//net", | 1916 "//net", |
| 1906 ] | 1917 ] |
| 1907 } | 1918 } |
| OLD | NEW |