| 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 1686 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1697 "socket/fuzzed_socket_factory.cc", | 1697 "socket/fuzzed_socket_factory.cc", |
| 1698 "socket/fuzzed_socket_factory.h", | 1698 "socket/fuzzed_socket_factory.h", |
| 1699 ] | 1699 ] |
| 1700 deps = [ | 1700 deps = [ |
| 1701 "//base", | 1701 "//base", |
| 1702 "//base:i18n", | 1702 "//base:i18n", |
| 1703 "//net", | 1703 "//net", |
| 1704 ] | 1704 ] |
| 1705 } | 1705 } |
| 1706 | 1706 |
| 1707 fuzzer_test("net_data_job_fuzzer") { |
| 1708 sources = [ |
| 1709 "url_request/url_request_data_job_fuzzer.cc", |
| 1710 ] |
| 1711 deps = [ |
| 1712 ":net_fuzzer_test_support", |
| 1713 ":test_support", |
| 1714 "//base", |
| 1715 "//net", |
| 1716 ] |
| 1717 } |
| 1718 |
| 1707 fuzzer_test("net_mime_sniffer_fuzzer") { | 1719 fuzzer_test("net_mime_sniffer_fuzzer") { |
| 1708 sources = [ | 1720 sources = [ |
| 1709 "base/mime_sniffer_fuzzer.cc", | 1721 "base/mime_sniffer_fuzzer.cc", |
| 1710 ] | 1722 ] |
| 1711 deps = [ | 1723 deps = [ |
| 1712 ":net_fuzzer_test_support", | 1724 ":net_fuzzer_test_support", |
| 1713 "//base", | 1725 "//base", |
| 1714 "//net", | 1726 "//net", |
| 1715 ] | 1727 ] |
| 1716 } | 1728 } |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1983 "url_request/url_request_fuzzer.cc", | 1995 "url_request/url_request_fuzzer.cc", |
| 1984 ] | 1996 ] |
| 1985 deps = [ | 1997 deps = [ |
| 1986 ":net_fuzzer_test_support", | 1998 ":net_fuzzer_test_support", |
| 1987 ":test_support", | 1999 ":test_support", |
| 1988 "//base", | 2000 "//base", |
| 1989 "//net", | 2001 "//net", |
| 1990 ] | 2002 ] |
| 1991 dict = "data/http/http.dict" | 2003 dict = "data/http/http.dict" |
| 1992 } | 2004 } |
| OLD | NEW |