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

Side by Side Diff: net/BUILD.gn

Issue 2269133002: Add fuzzer_test_support.cc to net_fuzzer_test_support target (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1647 matching lines...) Expand 10 before | Expand all | Expand 10 after
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/fuzzer_test_support.cc",
1668 "socket/fuzzed_socket.cc", 1669 "socket/fuzzed_socket.cc",
1669 "socket/fuzzed_socket.h", 1670 "socket/fuzzed_socket.h",
1670 "socket/fuzzed_socket_factory.cc", 1671 "socket/fuzzed_socket_factory.cc",
1671 "socket/fuzzed_socket_factory.h", 1672 "socket/fuzzed_socket_factory.h",
1672 "udp/fuzzed_datagram_client_socket.cc", 1673 "udp/fuzzed_datagram_client_socket.cc",
1673 "udp/fuzzed_datagram_client_socket.h", 1674 "udp/fuzzed_datagram_client_socket.h",
1674 ] 1675 ]
1675 public_deps = [ 1676 public_deps = [
1676 "//base/test:test_support", 1677 "//base/test:test_support",
1677 ] 1678 ]
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
1994 "url_request/url_request_fuzzer.cc", 1995 "url_request/url_request_fuzzer.cc",
1995 ] 1996 ]
1996 deps = [ 1997 deps = [
1997 ":net_fuzzer_test_support", 1998 ":net_fuzzer_test_support",
1998 ":test_support", 1999 ":test_support",
1999 "//base", 2000 "//base",
2000 "//net", 2001 "//net",
2001 ] 2002 ]
2002 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" 2003 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict"
2003 } 2004 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698