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

Side by Side Diff: net/BUILD.gn

Issue 1919013003: Add fuzzer to test Fuzz URLRequestDataJob (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@url_request_fuzzer
Patch Set: Use URLRequest::Delegate Created 4 years, 7 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
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 1671 matching lines...) Expand 10 before | Expand all | Expand 10 after
1682 "socket/fuzzed_socket_factory.cc", 1682 "socket/fuzzed_socket_factory.cc",
1683 "socket/fuzzed_socket_factory.h", 1683 "socket/fuzzed_socket_factory.h",
1684 ] 1684 ]
1685 deps = [ 1685 deps = [
1686 "//base", 1686 "//base",
1687 "//base:i18n", 1687 "//base:i18n",
1688 "//net", 1688 "//net",
1689 ] 1689 ]
1690 } 1690 }
1691 1691
1692 fuzzer_test("net_data_job_fuzzer") {
1693 sources = [
1694 "url_request/url_request_data_job_fuzzer.cc",
1695 ]
1696 deps = [
1697 ":net_fuzzer_test_support",
1698 ":test_support",
1699 "//base",
1700 "//net",
1701 ]
1702 }
1703
1692 fuzzer_test("net_mime_sniffer_fuzzer") { 1704 fuzzer_test("net_mime_sniffer_fuzzer") {
1693 sources = [ 1705 sources = [
1694 "base/mime_sniffer_fuzzer.cc", 1706 "base/mime_sniffer_fuzzer.cc",
1695 ] 1707 ]
1696 deps = [ 1708 deps = [
1697 ":net_fuzzer_test_support", 1709 ":net_fuzzer_test_support",
1698 "//base", 1710 "//base",
1699 "//net", 1711 "//net",
1700 ] 1712 ]
1701 } 1713 }
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
1914 sources = [ 1926 sources = [
1915 "url_request/url_request_fuzzer.cc", 1927 "url_request/url_request_fuzzer.cc",
1916 ] 1928 ]
1917 deps = [ 1929 deps = [
1918 ":net_fuzzer_test_support", 1930 ":net_fuzzer_test_support",
1919 ":test_support", 1931 ":test_support",
1920 "//base", 1932 "//base",
1921 "//net", 1933 "//net",
1922 ] 1934 ]
1923 } 1935 }
OLDNEW
« no previous file with comments | « no previous file | net/base/fuzzed_data_provider.h » ('j') | net/url_request/url_request_data_job_fuzzer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698