Chromium Code Reviews| 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 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 Loading... | |
| 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 } |
| OLD | NEW |