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

Side by Side Diff: net/BUILD.gn

Issue 2463233002: Add a BrotliSourceStream fuzzer (Closed)
Patch Set: Correct typo in gzip file 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/brotli_source_stream_fuzzer.cc » ('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 1830 matching lines...) Expand 10 before | Expand all | Expand 10 after
1841 ] 1841 ]
1842 deps = [ 1842 deps = [
1843 ":net_fuzzer_test_support", 1843 ":net_fuzzer_test_support",
1844 ":test_support", 1844 ":test_support",
1845 "//base", 1845 "//base",
1846 "//net", 1846 "//net",
1847 ] 1847 ]
1848 dict = "data/fuzzer_dictionaries/net_http_stream_parser_fuzzer.dict" 1848 dict = "data/fuzzer_dictionaries/net_http_stream_parser_fuzzer.dict"
1849 } 1849 }
1850 1850
1851 if (!disable_brotli_filter) {
1852 fuzzer_test("net_brotli_source_stream_fuzzer") {
1853 sources = [
1854 "filter/brotli_source_stream_fuzzer.cc",
1855 ]
1856 deps = [
1857 ":net_fuzzer_test_support",
1858 ":test_support",
1859 "//base",
1860 "//net",
1861 ]
1862 }
1863 }
1864
1851 fuzzer_test("net_gzip_source_stream_fuzzer") { 1865 fuzzer_test("net_gzip_source_stream_fuzzer") {
1852 sources = [ 1866 sources = [
1853 "filter/gzip_source_stream_fuzzer.cc", 1867 "filter/gzip_source_stream_fuzzer.cc",
1854 ] 1868 ]
1855 deps = [ 1869 deps = [
1856 ":net_fuzzer_test_support", 1870 ":net_fuzzer_test_support",
1857 ":test_support", 1871 ":test_support",
1858 "//base", 1872 "//base",
1859 "//net", 1873 "//net",
1860 ] 1874 ]
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
2056 "http/http_security_headers_hpkp_report_only_fuzzer.cc", 2070 "http/http_security_headers_hpkp_report_only_fuzzer.cc",
2057 ] 2071 ]
2058 deps = [ 2072 deps = [
2059 ":net_fuzzer_test_support", 2073 ":net_fuzzer_test_support",
2060 "//base", 2074 "//base",
2061 "//net", 2075 "//net",
2062 "//url", 2076 "//url",
2063 ] 2077 ]
2064 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" 2078 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
2065 } 2079 }
OLDNEW
« no previous file with comments | « no previous file | net/filter/brotli_source_stream_fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698