| 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 1897 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1908 fuzzer_test("net_http_stream_parser_fuzzer") { | 1908 fuzzer_test("net_http_stream_parser_fuzzer") { |
| 1909 sources = [ | 1909 sources = [ |
| 1910 "http/http_stream_parser_fuzzer.cc", | 1910 "http/http_stream_parser_fuzzer.cc", |
| 1911 ] | 1911 ] |
| 1912 deps = [ | 1912 deps = [ |
| 1913 ":net_fuzzer_test_support", | 1913 ":net_fuzzer_test_support", |
| 1914 ":test_support", | 1914 ":test_support", |
| 1915 "//base", | 1915 "//base", |
| 1916 "//net", | 1916 "//net", |
| 1917 ] | 1917 ] |
| 1918 dict = "data/http/http.dict" |
| 1918 } | 1919 } |
| 1919 | 1920 |
| 1920 fuzzer_test("net_ftp_ctrl_response_fuzzer") { | 1921 fuzzer_test("net_ftp_ctrl_response_fuzzer") { |
| 1921 sources = [ | 1922 sources = [ |
| 1922 "ftp/ftp_ctrl_response_fuzzer.cc", | 1923 "ftp/ftp_ctrl_response_fuzzer.cc", |
| 1923 ] | 1924 ] |
| 1924 deps = [ | 1925 deps = [ |
| 1925 ":net_fuzzer_test_support", | 1926 ":net_fuzzer_test_support", |
| 1926 "//base", | 1927 "//base", |
| 1927 "//net", | 1928 "//net", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1976 fuzzer_test("net_http_proxy_client_socket_fuzzer") { | 1977 fuzzer_test("net_http_proxy_client_socket_fuzzer") { |
| 1977 sources = [ | 1978 sources = [ |
| 1978 "http/http_proxy_client_socket_fuzzer.cc", | 1979 "http/http_proxy_client_socket_fuzzer.cc", |
| 1979 ] | 1980 ] |
| 1980 deps = [ | 1981 deps = [ |
| 1981 ":net_fuzzer_test_support", | 1982 ":net_fuzzer_test_support", |
| 1982 ":test_support", | 1983 ":test_support", |
| 1983 "//base", | 1984 "//base", |
| 1984 "//net", | 1985 "//net", |
| 1985 ] | 1986 ] |
| 1987 dict = "data/http/http.dict" |
| 1986 } | 1988 } |
| 1987 | 1989 |
| 1988 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { | 1990 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { |
| 1989 sources = [ | 1991 sources = [ |
| 1990 "quic/quic_crypto_framer_parse_message_fuzzer.cc", | 1992 "quic/quic_crypto_framer_parse_message_fuzzer.cc", |
| 1991 ] | 1993 ] |
| 1992 deps = [ | 1994 deps = [ |
| 1993 ":net_fuzzer_test_support", | 1995 ":net_fuzzer_test_support", |
| 1994 "//base", | 1996 "//base", |
| 1995 "//net", | 1997 "//net", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 2012 sources = [ | 2014 sources = [ |
| 2013 "socket/socks5_client_socket_fuzzer.cc", | 2015 "socket/socks5_client_socket_fuzzer.cc", |
| 2014 ] | 2016 ] |
| 2015 deps = [ | 2017 deps = [ |
| 2016 ":net_fuzzer_test_support", | 2018 ":net_fuzzer_test_support", |
| 2017 ":test_support", | 2019 ":test_support", |
| 2018 "//base", | 2020 "//base", |
| 2019 "//net", | 2021 "//net", |
| 2020 ] | 2022 ] |
| 2021 } | 2023 } |
| OLD | NEW |