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 1951 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1962 ] | 1962 ] |
1963 deps = [ | 1963 deps = [ |
1964 ":net_fuzzer_test_support", | 1964 ":net_fuzzer_test_support", |
1965 ":test_support", | 1965 ":test_support", |
1966 "//base", | 1966 "//base", |
1967 "//net", | 1967 "//net", |
1968 ] | 1968 ] |
1969 dict = "data/fuzzer_dictionaries/net_http_proxy_client_socket_fuzzer.dict" | 1969 dict = "data/fuzzer_dictionaries/net_http_proxy_client_socket_fuzzer.dict" |
1970 } | 1970 } |
1971 | 1971 |
| 1972 fuzzer_test("net_parse_url_hostname_to_address_fuzzer") { |
| 1973 sources = [ |
| 1974 "base/parse_url_hostname_to_address_fuzzer.cc", |
| 1975 ] |
| 1976 deps = [ |
| 1977 ":net_fuzzer_test_support", |
| 1978 "//base", |
| 1979 "//net", |
| 1980 ] |
| 1981 libfuzzer_options = [ "max_len=512" ] |
| 1982 seed_corpus = "data/fuzzer_data/hostnames/" |
| 1983 } |
| 1984 |
1972 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { | 1985 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { |
1973 sources = [ | 1986 sources = [ |
1974 "quic/core/quic_crypto_framer_parse_message_fuzzer.cc", | 1987 "quic/core/quic_crypto_framer_parse_message_fuzzer.cc", |
1975 ] | 1988 ] |
1976 deps = [ | 1989 deps = [ |
1977 ":net_fuzzer_test_support", | 1990 ":net_fuzzer_test_support", |
1978 "//base", | 1991 "//base", |
1979 "//net", | 1992 "//net", |
1980 ] | 1993 ] |
1981 } | 1994 } |
(...skipping 27 matching lines...) Expand all Loading... |
2009 "url_request/url_request_fuzzer.cc", | 2022 "url_request/url_request_fuzzer.cc", |
2010 ] | 2023 ] |
2011 deps = [ | 2024 deps = [ |
2012 ":net_fuzzer_test_support", | 2025 ":net_fuzzer_test_support", |
2013 ":test_support", | 2026 ":test_support", |
2014 "//base", | 2027 "//base", |
2015 "//net", | 2028 "//net", |
2016 ] | 2029 ] |
2017 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" | 2030 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" |
2018 } | 2031 } |
OLD | NEW |