| 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 1963 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1974 ] | 1974 ] |
| 1975 deps = [ | 1975 deps = [ |
| 1976 ":net_fuzzer_test_support", | 1976 ":net_fuzzer_test_support", |
| 1977 ":test_support", | 1977 ":test_support", |
| 1978 "//base", | 1978 "//base", |
| 1979 "//net", | 1979 "//net", |
| 1980 ] | 1980 ] |
| 1981 dict = "data/fuzzer_dictionaries/net_http_proxy_client_socket_fuzzer.dict" | 1981 dict = "data/fuzzer_dictionaries/net_http_proxy_client_socket_fuzzer.dict" |
| 1982 } | 1982 } |
| 1983 | 1983 |
| 1984 fuzzer_test("net_parse_url_hostname_to_address_fuzzer") { |
| 1985 sources = [ |
| 1986 "base/parse_url_hostname_to_address_fuzzer.cc", |
| 1987 ] |
| 1988 deps = [ |
| 1989 ":net_fuzzer_test_support", |
| 1990 "//base", |
| 1991 "//net", |
| 1992 ] |
| 1993 libfuzzer_options = [ "max_len=512" ] |
| 1994 seed_corpus = "data/fuzzer_data/hostnames/" |
| 1995 } |
| 1996 |
| 1984 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { | 1997 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { |
| 1985 sources = [ | 1998 sources = [ |
| 1986 "quic/core/quic_crypto_framer_parse_message_fuzzer.cc", | 1999 "quic/core/quic_crypto_framer_parse_message_fuzzer.cc", |
| 1987 ] | 2000 ] |
| 1988 deps = [ | 2001 deps = [ |
| 1989 ":net_fuzzer_test_support", | 2002 ":net_fuzzer_test_support", |
| 1990 "//base", | 2003 "//base", |
| 1991 "//net", | 2004 "//net", |
| 1992 ] | 2005 ] |
| 1993 } | 2006 } |
| (...skipping 27 matching lines...) Expand all Loading... |
| 2021 "url_request/url_request_fuzzer.cc", | 2034 "url_request/url_request_fuzzer.cc", |
| 2022 ] | 2035 ] |
| 2023 deps = [ | 2036 deps = [ |
| 2024 ":net_fuzzer_test_support", | 2037 ":net_fuzzer_test_support", |
| 2025 ":test_support", | 2038 ":test_support", |
| 2026 "//base", | 2039 "//base", |
| 2027 "//net", | 2040 "//net", |
| 2028 ] | 2041 ] |
| 2029 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" | 2042 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" |
| 2030 } | 2043 } |
| OLD | NEW |