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

Side by Side Diff: net/BUILD.gn

Issue 1834303002: Rework the mime sniffer fuzzer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update comment Created 4 years, 8 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/base/mime_sniffer_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 1736 matching lines...) Expand 10 before | Expand all | Expand 10 after
1747 1747
1748 sources = [ 1748 sources = [
1749 "base/fuzzer_test_support.cc", 1749 "base/fuzzer_test_support.cc",
1750 ] 1750 ]
1751 deps = [ 1751 deps = [
1752 "//base", 1752 "//base",
1753 "//base:i18n", 1753 "//base:i18n",
1754 ] 1754 ]
1755 } 1755 }
1756 1756
1757 fuzzer_test("net_mime_sniffer_fuzzer") {
1758 sources = [
1759 "base/mime_sniffer_fuzzer.cc",
1760 ]
1761 deps = [
1762 ":net_fuzzer_test_support",
1763 "//base",
1764 "//net",
1765 ]
1766 }
1767
1757 fuzzer_test("net_parse_proxy_list_pac_fuzzer") { 1768 fuzzer_test("net_parse_proxy_list_pac_fuzzer") {
1758 sources = [ 1769 sources = [
1759 "proxy/parse_proxy_list_pac_fuzzer.cc", 1770 "proxy/parse_proxy_list_pac_fuzzer.cc",
1760 ] 1771 ]
1761 deps = [ 1772 deps = [
1762 ":net_fuzzer_test_support", 1773 ":net_fuzzer_test_support",
1763 "//net", 1774 "//net",
1764 ] 1775 ]
1765 } 1776 }
1766 1777
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
1798 sources = [ 1809 sources = [
1799 "base/parse_data_url_fuzzer.cc", 1810 "base/parse_data_url_fuzzer.cc",
1800 ] 1811 ]
1801 deps = [ 1812 deps = [
1802 ":net_fuzzer_test_support", 1813 ":net_fuzzer_test_support",
1803 "//base", 1814 "//base",
1804 "//net", 1815 "//net",
1805 ] 1816 ]
1806 } 1817 }
1807 1818
1808 fuzzer_test("net_sniff_mime_type_fuzzer") {
1809 sources = [
1810 "base/sniff_mime_type_fuzzer.cc",
1811 ]
1812 deps = [
1813 ":net_fuzzer_test_support",
1814 "//base",
1815 "//net",
1816 ]
1817 }
1818
1819 fuzzer_test("net_parse_ip_pattern_fuzzer") { 1819 fuzzer_test("net_parse_ip_pattern_fuzzer") {
1820 sources = [ 1820 sources = [
1821 "base/parse_ip_pattern_fuzzer.cc", 1821 "base/parse_ip_pattern_fuzzer.cc",
1822 ] 1822 ]
1823 deps = [ 1823 deps = [
1824 ":net_fuzzer_test_support", 1824 ":net_fuzzer_test_support",
1825 "//net", 1825 "//net",
1826 ] 1826 ]
1827 } 1827 }
1828 1828
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
1917 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { 1917 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") {
1918 sources = [ 1918 sources = [
1919 "quic/quic_crypto_framer_parse_message_fuzzer.cc", 1919 "quic/quic_crypto_framer_parse_message_fuzzer.cc",
1920 ] 1920 ]
1921 deps = [ 1921 deps = [
1922 ":net_fuzzer_test_support", 1922 ":net_fuzzer_test_support",
1923 "//base", 1923 "//base",
1924 "//net", 1924 "//net",
1925 ] 1925 ]
1926 } 1926 }
OLDNEW
« no previous file with comments | « no previous file | net/base/mime_sniffer_fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698