| 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 1954 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1965 sources = [ | 1965 sources = [ |
| 1966 "http/http_chunked_decoder_fuzzer.cc", | 1966 "http/http_chunked_decoder_fuzzer.cc", |
| 1967 ] | 1967 ] |
| 1968 deps = [ | 1968 deps = [ |
| 1969 ":net_fuzzer_test_support", | 1969 ":net_fuzzer_test_support", |
| 1970 "//net", | 1970 "//net", |
| 1971 ] | 1971 ] |
| 1972 dict = "http/http_chunked_decoder_fuzzer.dict" | 1972 dict = "http/http_chunked_decoder_fuzzer.dict" |
| 1973 } | 1973 } |
| 1974 | 1974 |
| 1975 fuzzer_test("net_http_proxy_client_socket_fuzzer") { |
| 1976 sources = [ |
| 1977 "http/http_proxy_client_socket_fuzzer.cc", |
| 1978 ] |
| 1979 deps = [ |
| 1980 ":net_fuzzer_test_support", |
| 1981 ":test_support", |
| 1982 "//base", |
| 1983 "//net", |
| 1984 ] |
| 1985 } |
| 1986 |
| 1975 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { | 1987 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { |
| 1976 sources = [ | 1988 sources = [ |
| 1977 "quic/quic_crypto_framer_parse_message_fuzzer.cc", | 1989 "quic/quic_crypto_framer_parse_message_fuzzer.cc", |
| 1978 ] | 1990 ] |
| 1979 deps = [ | 1991 deps = [ |
| 1980 ":net_fuzzer_test_support", | 1992 ":net_fuzzer_test_support", |
| 1981 "//base", | 1993 "//base", |
| 1982 "//net", | 1994 "//net", |
| 1983 ] | 1995 ] |
| 1984 } | 1996 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 1999 sources = [ | 2011 sources = [ |
| 2000 "socket/socks5_client_socket_fuzzer.cc", | 2012 "socket/socks5_client_socket_fuzzer.cc", |
| 2001 ] | 2013 ] |
| 2002 deps = [ | 2014 deps = [ |
| 2003 ":net_fuzzer_test_support", | 2015 ":net_fuzzer_test_support", |
| 2004 ":test_support", | 2016 ":test_support", |
| 2005 "//base", | 2017 "//base", |
| 2006 "//net", | 2018 "//net", |
| 2007 ] | 2019 ] |
| 2008 } | 2020 } |
| OLD | NEW |