| 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 1647 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1658 } | 1658 } |
| 1659 | 1659 |
| 1660 # Fuzzers | 1660 # Fuzzers |
| 1661 | 1661 |
| 1662 # This has a global (InitGlobals) that must always be linked in, so | 1662 # This has a global (InitGlobals) that must always be linked in, so |
| 1663 # must be a source set instead of a static library. | 1663 # must be a source set instead of a static library. |
| 1664 source_set("net_fuzzer_test_support") { | 1664 source_set("net_fuzzer_test_support") { |
| 1665 testonly = true | 1665 testonly = true |
| 1666 | 1666 |
| 1667 sources = [ | 1667 sources = [ |
| 1668 "base/fuzzed_data_provider.cc", | |
| 1669 "base/fuzzed_data_provider.h", | |
| 1670 "base/fuzzer_test_support.cc", | 1668 "base/fuzzer_test_support.cc", |
| 1671 "socket/fuzzed_socket.cc", | 1669 "socket/fuzzed_socket.cc", |
| 1672 "socket/fuzzed_socket.h", | 1670 "socket/fuzzed_socket.h", |
| 1673 "socket/fuzzed_socket_factory.cc", | 1671 "socket/fuzzed_socket_factory.cc", |
| 1674 "socket/fuzzed_socket_factory.h", | 1672 "socket/fuzzed_socket_factory.h", |
| 1675 "udp/fuzzed_datagram_client_socket.cc", | 1673 "udp/fuzzed_datagram_client_socket.cc", |
| 1676 "udp/fuzzed_datagram_client_socket.h", | 1674 "udp/fuzzed_datagram_client_socket.h", |
| 1677 ] | 1675 ] |
| 1678 deps = [ | 1676 deps = [ |
| 1679 "//base", | 1677 "//base", |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1994 "url_request/url_request_fuzzer.cc", | 1992 "url_request/url_request_fuzzer.cc", |
| 1995 ] | 1993 ] |
| 1996 deps = [ | 1994 deps = [ |
| 1997 ":net_fuzzer_test_support", | 1995 ":net_fuzzer_test_support", |
| 1998 ":test_support", | 1996 ":test_support", |
| 1999 "//base", | 1997 "//base", |
| 2000 "//net", | 1998 "//net", |
| 2001 ] | 1999 ] |
| 2002 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" | 2000 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" |
| 2003 } | 2001 } |
| OLD | NEW |