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

Side by Side Diff: net/BUILD.gn

Issue 1742813002: Move network fuzzers from //testing/libfuzzer/fuzzers to //net (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fuzz1
Patch Set: rebase Created 4 years, 9 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 | net/DEPS » ('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 1724 matching lines...) Expand 10 before | Expand all | Expand 10 after
1735 sources += [ "websockets/websocket_frame_perftest.cc" ] 1735 sources += [ "websockets/websocket_frame_perftest.cc" ]
1736 } 1736 }
1737 1737
1738 if (use_v8_in_net) { 1738 if (use_v8_in_net) {
1739 deps += [ ":net_with_v8" ] 1739 deps += [ ":net_with_v8" ]
1740 } else { 1740 } else {
1741 sources -= [ "proxy/proxy_resolver_perftest.cc" ] 1741 sources -= [ "proxy/proxy_resolver_perftest.cc" ]
1742 } 1742 }
1743 } 1743 }
1744 1744
1745 # Fuzzers
1746
1745 fuzzer_test("parse_proxy_list_pac_fuzzer") { 1747 fuzzer_test("parse_proxy_list_pac_fuzzer") {
1746 sources = [ 1748 sources = [
1747 "proxy/parse_proxy_list_pac_fuzzer.cc", 1749 "proxy/parse_proxy_list_pac_fuzzer.cc",
1748 ] 1750 ]
1749 deps = [ 1751 deps = [
1750 "//net", 1752 "//net",
1751 ] 1753 ]
1752 } 1754 }
1753 1755
1754 fuzzer_test("parse_proxy_list_fuzzer") { 1756 fuzzer_test("parse_proxy_list_fuzzer") {
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
1820 1822
1821 fuzzer_test("parse_cookie_line_fuzzer") { 1823 fuzzer_test("parse_cookie_line_fuzzer") {
1822 sources = [ 1824 sources = [
1823 "cookies/parse_cookie_line_fuzzer.cc", 1825 "cookies/parse_cookie_line_fuzzer.cc",
1824 ] 1826 ]
1825 deps = [ 1827 deps = [
1826 "//net", 1828 "//net",
1827 ] 1829 ]
1828 } 1830 }
1829 1831
1832 fuzzer_test("dns_record_fuzzer") {
1833 sources = [
1834 "dns/dns_record_fuzzer.cc",
1835 ]
1836 deps = [
1837 "//base",
1838 "//net",
1839 ]
1840 }
1841
1842 fuzzer_test("ftp_ctrl_response_fuzzer") {
1843 sources = [
1844 "ftp/ftp_ctrl_response_fuzzer.cc",
1845 ]
1846 deps = [
1847 "//base",
1848 "//net",
1849 ]
1850 }
1851
1852 fuzzer_test("ftp_directory_listing_fuzzer") {
1853 sources = [
1854 "ftp/ftp_directory_listing_fuzzer.cc",
1855 ]
1856 deps = [
1857 "//base",
1858 "//base:i18n",
1859 "//net",
1860 ]
1861 }
1862
1863 fuzzer_test("unescape_url_component_fuzzer") {
1864 sources = [
1865 "base/unescape_url_component_fuzzer.cc",
1866 ]
1867 deps = [
1868 "//base",
1869 "//net",
1870 ]
1871 }
1872
1873 fuzzer_test("websocket_frame_parser_fuzzer") {
1874 sources = [
1875 "websockets/websocket_frame_parser_fuzzer.cc",
1876 ]
1877 deps = [
1878 "//net",
1879 ]
1880 }
1881
1882 fuzzer_test("http_chunked_decoder_fuzzer") {
1883 sources = [
1884 "http/http_chunked_decoder_fuzzer.cc",
1885 ]
1886 deps = [
1887 "//net",
1888 ]
1889 }
1890
1891 fuzzer_test("quic_crypto_framer_parse_message_fuzzer") {
1892 sources = [
1893 "quic/quic_crypto_framer_parse_message_fuzzer.cc",
1894 ]
1895 deps = [
1896 "//base",
1897 "//net",
1898 ]
1899 }
1900
1830 buildflag_header("features") { 1901 buildflag_header("features") {
1831 header = "net_features.h" 1902 header = "net_features.h"
1832 1903
1833 flags = [ "ENABLE_BIDIRECTIONAL_STREAM=$enable_bidirectional_stream" ] 1904 flags = [ "ENABLE_BIDIRECTIONAL_STREAM=$enable_bidirectional_stream" ]
1834 } 1905 }
OLDNEW
« no previous file with comments | « no previous file | net/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698