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

Side by Side Diff: net/BUILD.gn

Issue 1931723002: fuzzer for net::NormalizeName (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add //base dep 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
« no previous file with comments | « no previous file | net/cert/internal/verify_name_match_normalizename_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 1766 matching lines...) Expand 10 before | Expand all | Expand 10 after
1777 sources = [ 1777 sources = [
1778 "base/registry_controlled_domains/get_domain_and_registry_fuzzer.cc", 1778 "base/registry_controlled_domains/get_domain_and_registry_fuzzer.cc",
1779 ] 1779 ]
1780 deps = [ 1780 deps = [
1781 ":net_fuzzer_test_support", 1781 ":net_fuzzer_test_support",
1782 "//base", 1782 "//base",
1783 "//net", 1783 "//net",
1784 ] 1784 ]
1785 } 1785 }
1786 1786
1787 fuzzer_test("net_cert_normalize_name_fuzzer") {
1788 sources = [
1789 "cert/internal/verify_name_match_normalizename_fuzzer.cc",
1790 ]
1791 deps = [
1792 "//base",
1793 "//net",
1794 ]
1795 }
1796
1787 fuzzer_test("net_parse_cookie_line_fuzzer") { 1797 fuzzer_test("net_parse_cookie_line_fuzzer") {
1788 sources = [ 1798 sources = [
1789 "cookies/parse_cookie_line_fuzzer.cc", 1799 "cookies/parse_cookie_line_fuzzer.cc",
1790 ] 1800 ]
1791 deps = [ 1801 deps = [
1792 ":net_fuzzer_test_support", 1802 ":net_fuzzer_test_support",
1793 "//net", 1803 "//net",
1794 ] 1804 ]
1795 } 1805 }
1796 1806
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
1914 sources = [ 1924 sources = [
1915 "socket/socks5_client_socket_fuzzer.cc", 1925 "socket/socks5_client_socket_fuzzer.cc",
1916 ] 1926 ]
1917 deps = [ 1927 deps = [
1918 ":net_fuzzer_test_support", 1928 ":net_fuzzer_test_support",
1919 ":test_support", 1929 ":test_support",
1920 "//base", 1930 "//base",
1921 "//net", 1931 "//net",
1922 ] 1932 ]
1923 } 1933 }
OLDNEW
« no previous file with comments | « no previous file | net/cert/internal/verify_name_match_normalizename_fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698