| 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 1769 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1780 sources = [ | 1780 sources = [ |
| 1781 "base/registry_controlled_domains/get_domain_and_registry_fuzzer.cc", | 1781 "base/registry_controlled_domains/get_domain_and_registry_fuzzer.cc", |
| 1782 ] | 1782 ] |
| 1783 deps = [ | 1783 deps = [ |
| 1784 ":net_fuzzer_test_support", | 1784 ":net_fuzzer_test_support", |
| 1785 "//base", | 1785 "//base", |
| 1786 "//net", | 1786 "//net", |
| 1787 ] | 1787 ] |
| 1788 } | 1788 } |
| 1789 | 1789 |
| 1790 fuzzer_test("net_cert_verify_name_match_fuzzer") { |
| 1791 sources = [ |
| 1792 "cert/internal/verify_name_match_fuzzer.cc", |
| 1793 ] |
| 1794 deps = [ |
| 1795 ":net_fuzzer_test_support", |
| 1796 "//base", |
| 1797 "//net", |
| 1798 ] |
| 1799 } |
| 1800 |
| 1790 fuzzer_test("net_cert_normalize_name_fuzzer") { | 1801 fuzzer_test("net_cert_normalize_name_fuzzer") { |
| 1791 sources = [ | 1802 sources = [ |
| 1792 "cert/internal/verify_name_match_normalizename_fuzzer.cc", | 1803 "cert/internal/verify_name_match_normalizename_fuzzer.cc", |
| 1793 ] | 1804 ] |
| 1794 deps = [ | 1805 deps = [ |
| 1795 "//base", | 1806 "//base", |
| 1796 "//net", | 1807 "//net", |
| 1797 ] | 1808 ] |
| 1798 } | 1809 } |
| 1799 | 1810 |
| 1811 fuzzer_test("net_cert_verify_name_in_subtree_fuzzer") { |
| 1812 sources = [ |
| 1813 "cert/internal/verify_name_match_verifynameinsubtree_fuzzer.cc", |
| 1814 ] |
| 1815 deps = [ |
| 1816 ":net_fuzzer_test_support", |
| 1817 "//base", |
| 1818 "//net", |
| 1819 ] |
| 1820 } |
| 1821 |
| 1800 fuzzer_test("net_parse_cookie_line_fuzzer") { | 1822 fuzzer_test("net_parse_cookie_line_fuzzer") { |
| 1801 sources = [ | 1823 sources = [ |
| 1802 "cookies/parse_cookie_line_fuzzer.cc", | 1824 "cookies/parse_cookie_line_fuzzer.cc", |
| 1803 ] | 1825 ] |
| 1804 deps = [ | 1826 deps = [ |
| 1805 ":net_fuzzer_test_support", | 1827 ":net_fuzzer_test_support", |
| 1806 "//net", | 1828 "//net", |
| 1807 ] | 1829 ] |
| 1808 } | 1830 } |
| 1809 | 1831 |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1951 "url_request/url_request_fuzzer.cc", | 1973 "url_request/url_request_fuzzer.cc", |
| 1952 ] | 1974 ] |
| 1953 deps = [ | 1975 deps = [ |
| 1954 ":net_fuzzer_test_support", | 1976 ":net_fuzzer_test_support", |
| 1955 ":test_support", | 1977 ":test_support", |
| 1956 "//base", | 1978 "//base", |
| 1957 "//net", | 1979 "//net", |
| 1958 ] | 1980 ] |
| 1959 dict = "data/http/http.dict" | 1981 dict = "data/http/http.dict" |
| 1960 } | 1982 } |
| OLD | NEW |