| 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 1747 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1758 } | 1758 } |
| 1759 } | 1759 } |
| 1760 | 1760 |
| 1761 # Fuzzers | 1761 # Fuzzers |
| 1762 | 1762 |
| 1763 source_set("net_fuzzer_test_support") { | 1763 source_set("net_fuzzer_test_support") { |
| 1764 testonly = true | 1764 testonly = true |
| 1765 | 1765 |
| 1766 sources = [ | 1766 sources = [ |
| 1767 "base/fuzzer_test_support.cc", | 1767 "base/fuzzer_test_support.cc", |
| 1768 "socket/fuzzed_socket.cc", |
| 1769 "socket/fuzzed_socket.h", |
| 1768 ] | 1770 ] |
| 1769 deps = [ | 1771 deps = [ |
| 1770 "//base", | 1772 "//base", |
| 1771 "//base:i18n", | 1773 "//base:i18n", |
| 1774 "//net", |
| 1772 ] | 1775 ] |
| 1773 } | 1776 } |
| 1774 | 1777 |
| 1775 fuzzer_test("net_mime_sniffer_fuzzer") { | 1778 fuzzer_test("net_mime_sniffer_fuzzer") { |
| 1776 sources = [ | 1779 sources = [ |
| 1777 "base/mime_sniffer_fuzzer.cc", | 1780 "base/mime_sniffer_fuzzer.cc", |
| 1778 ] | 1781 ] |
| 1779 deps = [ | 1782 deps = [ |
| 1780 ":net_fuzzer_test_support", | 1783 ":net_fuzzer_test_support", |
| 1781 "//base", | 1784 "//base", |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1947 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { | 1950 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { |
| 1948 sources = [ | 1951 sources = [ |
| 1949 "quic/quic_crypto_framer_parse_message_fuzzer.cc", | 1952 "quic/quic_crypto_framer_parse_message_fuzzer.cc", |
| 1950 ] | 1953 ] |
| 1951 deps = [ | 1954 deps = [ |
| 1952 ":net_fuzzer_test_support", | 1955 ":net_fuzzer_test_support", |
| 1953 "//base", | 1956 "//base", |
| 1954 "//net", | 1957 "//net", |
| 1955 ] | 1958 ] |
| 1956 } | 1959 } |
| 1960 |
| 1961 fuzzer_test("net_socks_client_socket_fuzzer") { |
| 1962 sources = [ |
| 1963 "socket/socks_client_socket_fuzzer.cc", |
| 1964 ] |
| 1965 deps = [ |
| 1966 ":net_fuzzer_test_support", |
| 1967 ":test_support", |
| 1968 "//base", |
| 1969 "//net", |
| 1970 ] |
| 1971 } |
| 1972 |
| 1973 fuzzer_test("net_socks5_client_socket_fuzzer") { |
| 1974 sources = [ |
| 1975 "socket/socks5_client_socket_fuzzer.cc", |
| 1976 ] |
| 1977 deps = [ |
| 1978 ":net_fuzzer_test_support", |
| 1979 ":test_support", |
| 1980 "//base", |
| 1981 "//net", |
| 1982 ] |
| 1983 } |
| OLD | NEW |