Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(257)

Side by Side Diff: net/BUILD.gn

Issue 1890193002: Add a fuzzer for HttpProxyClientSocket. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove test code, dictionary Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 dict = "http/http_chunked_decoder_fuzzer.dict"
eroman 2016/04/15 19:07:21 do you think the problem is it isn't being used wh
mmenke 2016/04/15 19:23:52 Oops, thought I removed this. I think it's broken
1986 }
1987
1975 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { 1988 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") {
1976 sources = [ 1989 sources = [
1977 "quic/quic_crypto_framer_parse_message_fuzzer.cc", 1990 "quic/quic_crypto_framer_parse_message_fuzzer.cc",
1978 ] 1991 ]
1979 deps = [ 1992 deps = [
1980 ":net_fuzzer_test_support", 1993 ":net_fuzzer_test_support",
1981 "//base", 1994 "//base",
1982 "//net", 1995 "//net",
1983 ] 1996 ]
1984 } 1997 }
(...skipping 14 matching lines...) Expand all
1999 sources = [ 2012 sources = [
2000 "socket/socks5_client_socket_fuzzer.cc", 2013 "socket/socks5_client_socket_fuzzer.cc",
2001 ] 2014 ]
2002 deps = [ 2015 deps = [
2003 ":net_fuzzer_test_support", 2016 ":net_fuzzer_test_support",
2004 ":test_support", 2017 ":test_support",
2005 "//base", 2018 "//base",
2006 "//net", 2019 "//net",
2007 ] 2020 ]
2008 } 2021 }
OLDNEW
« no previous file with comments | « no previous file | net/http/http_proxy_client_socket_fuzzer.cc » ('j') | net/http/http_proxy_client_socket_fuzzer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698