| 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 1765 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1776 sources = [ | 1776 sources = [ |
| 1777 "base/registry_controlled_domains/get_domain_and_registry_fuzzer.cc", | 1777 "base/registry_controlled_domains/get_domain_and_registry_fuzzer.cc", |
| 1778 ] | 1778 ] |
| 1779 deps = [ | 1779 deps = [ |
| 1780 ":net_fuzzer_test_support", | 1780 ":net_fuzzer_test_support", |
| 1781 "//base", | 1781 "//base", |
| 1782 "//net", | 1782 "//net", |
| 1783 ] | 1783 ] |
| 1784 } | 1784 } |
| 1785 | 1785 |
| 1786 fuzzer_test("net_cert_verify_name_match_fuzzer") { |
| 1787 sources = [ |
| 1788 "cert/internal/verify_name_match_fuzzer.cc", |
| 1789 ] |
| 1790 deps = [ |
| 1791 "//base", |
| 1792 "//net", |
| 1793 ] |
| 1794 } |
| 1795 |
| 1786 fuzzer_test("net_cert_normalize_name_fuzzer") { | 1796 fuzzer_test("net_cert_normalize_name_fuzzer") { |
| 1787 sources = [ | 1797 sources = [ |
| 1788 "cert/internal/verify_name_match_normalizename_fuzzer.cc", | 1798 "cert/internal/verify_name_match_normalizename_fuzzer.cc", |
| 1789 ] | 1799 ] |
| 1790 deps = [ | 1800 deps = [ |
| 1791 "//base", | 1801 "//base", |
| 1792 "//net", | 1802 "//net", |
| 1793 ] | 1803 ] |
| 1794 } | 1804 } |
| 1795 | 1805 |
| 1806 fuzzer_test("net_cert_verify_name_in_subtree_fuzzer") { |
| 1807 sources = [ |
| 1808 "cert/internal/verify_name_match_verifynameinsubtree_fuzzer.cc", |
| 1809 ] |
| 1810 deps = [ |
| 1811 "//base", |
| 1812 "//net", |
| 1813 ] |
| 1814 } |
| 1815 |
| 1796 fuzzer_test("net_parse_cookie_line_fuzzer") { | 1816 fuzzer_test("net_parse_cookie_line_fuzzer") { |
| 1797 sources = [ | 1817 sources = [ |
| 1798 "cookies/parse_cookie_line_fuzzer.cc", | 1818 "cookies/parse_cookie_line_fuzzer.cc", |
| 1799 ] | 1819 ] |
| 1800 deps = [ | 1820 deps = [ |
| 1801 ":net_fuzzer_test_support", | 1821 ":net_fuzzer_test_support", |
| 1802 "//net", | 1822 "//net", |
| 1803 ] | 1823 ] |
| 1804 } | 1824 } |
| 1805 | 1825 |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1923 sources = [ | 1943 sources = [ |
| 1924 "socket/socks5_client_socket_fuzzer.cc", | 1944 "socket/socks5_client_socket_fuzzer.cc", |
| 1925 ] | 1945 ] |
| 1926 deps = [ | 1946 deps = [ |
| 1927 ":net_fuzzer_test_support", | 1947 ":net_fuzzer_test_support", |
| 1928 ":test_support", | 1948 ":test_support", |
| 1929 "//base", | 1949 "//base", |
| 1930 "//net", | 1950 "//net", |
| 1931 ] | 1951 ] |
| 1932 } | 1952 } |
| OLD | NEW |