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 1840 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1851 sources = [ | 1851 sources = [ |
1852 "dns/dns_record_fuzzer.cc", | 1852 "dns/dns_record_fuzzer.cc", |
1853 ] | 1853 ] |
1854 deps = [ | 1854 deps = [ |
1855 ":net_fuzzer_test_support", | 1855 ":net_fuzzer_test_support", |
1856 "//base", | 1856 "//base", |
1857 "//net", | 1857 "//net", |
1858 ] | 1858 ] |
1859 } | 1859 } |
1860 | 1860 |
| 1861 fuzzer_test("net_http_stream_parser_fuzzer") { |
| 1862 sources = [ |
| 1863 "http/http_stream_parser_fuzzer.cc", |
| 1864 ] |
| 1865 deps = [ |
| 1866 ":net_fuzzer_test_support", |
| 1867 ":test_support", |
| 1868 "//base", |
| 1869 "//net", |
| 1870 ] |
| 1871 } |
| 1872 |
1861 fuzzer_test("net_ftp_ctrl_response_fuzzer") { | 1873 fuzzer_test("net_ftp_ctrl_response_fuzzer") { |
1862 sources = [ | 1874 sources = [ |
1863 "ftp/ftp_ctrl_response_fuzzer.cc", | 1875 "ftp/ftp_ctrl_response_fuzzer.cc", |
1864 ] | 1876 ] |
1865 deps = [ | 1877 deps = [ |
1866 ":net_fuzzer_test_support", | 1878 ":net_fuzzer_test_support", |
1867 "//base", | 1879 "//base", |
1868 "//net", | 1880 "//net", |
1869 ] | 1881 ] |
1870 } | 1882 } |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1917 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { | 1929 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { |
1918 sources = [ | 1930 sources = [ |
1919 "quic/quic_crypto_framer_parse_message_fuzzer.cc", | 1931 "quic/quic_crypto_framer_parse_message_fuzzer.cc", |
1920 ] | 1932 ] |
1921 deps = [ | 1933 deps = [ |
1922 ":net_fuzzer_test_support", | 1934 ":net_fuzzer_test_support", |
1923 "//base", | 1935 "//base", |
1924 "//net", | 1936 "//net", |
1925 ] | 1937 ] |
1926 } | 1938 } |
OLD | NEW |