OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |