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

Side by Side Diff: net/BUILD.gn

Issue 2460633002: Add a fuzzer for GzipSourceStream (Closed)
Patch Set: Address comments Created 4 years, 1 month 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 | net/filter/fuzzed_source_stream.h » ('j') | 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 1640 matching lines...) Expand 10 before | Expand all | Expand 10 after
1651 1651
1652 # Fuzzers 1652 # Fuzzers
1653 1653
1654 # This has a global (InitGlobals) that must always be linked in, so 1654 # This has a global (InitGlobals) that must always be linked in, so
1655 # must be a source set instead of a static library. 1655 # must be a source set instead of a static library.
1656 source_set("net_fuzzer_test_support") { 1656 source_set("net_fuzzer_test_support") {
1657 testonly = true 1657 testonly = true
1658 1658
1659 sources = [ 1659 sources = [
1660 "base/fuzzer_test_support.cc", 1660 "base/fuzzer_test_support.cc",
1661 "filter/fuzzed_source_stream.cc",
1662 "filter/fuzzed_source_stream.h",
1661 "socket/fuzzed_socket.cc", 1663 "socket/fuzzed_socket.cc",
1662 "socket/fuzzed_socket.h", 1664 "socket/fuzzed_socket.h",
1663 "socket/fuzzed_socket_factory.cc", 1665 "socket/fuzzed_socket_factory.cc",
1664 "socket/fuzzed_socket_factory.h", 1666 "socket/fuzzed_socket_factory.h",
1665 "udp/fuzzed_datagram_client_socket.cc", 1667 "udp/fuzzed_datagram_client_socket.cc",
1666 "udp/fuzzed_datagram_client_socket.h", 1668 "udp/fuzzed_datagram_client_socket.h",
1667 ] 1669 ]
1668 public_deps = [ 1670 public_deps = [
1669 "//base/test:test_support", 1671 "//base/test:test_support",
1670 ] 1672 ]
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
1871 ] 1873 ]
1872 deps = [ 1874 deps = [
1873 ":net_fuzzer_test_support", 1875 ":net_fuzzer_test_support",
1874 ":test_support", 1876 ":test_support",
1875 "//base", 1877 "//base",
1876 "//net", 1878 "//net",
1877 ] 1879 ]
1878 dict = "data/fuzzer_dictionaries/net_http_stream_parser_fuzzer.dict" 1880 dict = "data/fuzzer_dictionaries/net_http_stream_parser_fuzzer.dict"
1879 } 1881 }
1880 1882
1883 fuzzer_test("net_gzip_source_stream_fuzzer") {
1884 sources = [
1885 "filter/gzip_source_stream_fuzzer.cc",
1886 ]
1887 deps = [
1888 ":net_fuzzer_test_support",
1889 ":test_support",
1890 "//base",
1891 "//net",
1892 ]
1893 }
1894
1881 fuzzer_test("net_ftp_ctrl_response_fuzzer") { 1895 fuzzer_test("net_ftp_ctrl_response_fuzzer") {
1882 sources = [ 1896 sources = [
1883 "ftp/ftp_ctrl_response_fuzzer.cc", 1897 "ftp/ftp_ctrl_response_fuzzer.cc",
1884 ] 1898 ]
1885 deps = [ 1899 deps = [
1886 ":net_fuzzer_test_support", 1900 ":net_fuzzer_test_support",
1887 "//base", 1901 "//base",
1888 "//net", 1902 "//net",
1889 ] 1903 ]
1890 } 1904 }
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
2037 sources = [ 2051 sources = [
2038 "http/http_auth_challenge_tokenizer_fuzzer.cc", 2052 "http/http_auth_challenge_tokenizer_fuzzer.cc",
2039 ] 2053 ]
2040 deps = [ 2054 deps = [
2041 ":net_fuzzer_test_support", 2055 ":net_fuzzer_test_support",
2042 ":test_support", 2056 ":test_support",
2043 "//base", 2057 "//base",
2044 "//net", 2058 "//net",
2045 ] 2059 ]
2046 } 2060 }
OLDNEW
« no previous file with comments | « no previous file | net/filter/fuzzed_source_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698