| 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 1772 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1783 } | 1783 } |
| 1784 } | 1784 } |
| 1785 } | 1785 } |
| 1786 | 1786 |
| 1787 # Fuzzers | 1787 # Fuzzers |
| 1788 | 1788 |
| 1789 source_set("net_fuzzer_test_support") { | 1789 source_set("net_fuzzer_test_support") { |
| 1790 testonly = true | 1790 testonly = true |
| 1791 | 1791 |
| 1792 sources = [ | 1792 sources = [ |
| 1793 "base/fuzzed_data_provider.cc", |
| 1794 "base/fuzzed_data_provider.h", |
| 1793 "base/fuzzer_test_support.cc", | 1795 "base/fuzzer_test_support.cc", |
| 1794 "socket/fuzzed_socket.cc", | 1796 "socket/fuzzed_socket.cc", |
| 1795 "socket/fuzzed_socket.h", | 1797 "socket/fuzzed_socket.h", |
| 1798 "socket/fuzzed_socket_factory.cc", |
| 1799 "socket/fuzzed_socket_factory.h", |
| 1796 ] | 1800 ] |
| 1797 deps = [ | 1801 deps = [ |
| 1798 "//base", | 1802 "//base", |
| 1799 "//base:i18n", | 1803 "//base:i18n", |
| 1800 "//net", | 1804 "//net", |
| 1801 ] | 1805 ] |
| 1802 } | 1806 } |
| 1803 | 1807 |
| 1804 fuzzer_test("net_mime_sniffer_fuzzer") { | 1808 fuzzer_test("net_mime_sniffer_fuzzer") { |
| 1805 sources = [ | 1809 sources = [ |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2014 sources = [ | 2018 sources = [ |
| 2015 "socket/socks5_client_socket_fuzzer.cc", | 2019 "socket/socks5_client_socket_fuzzer.cc", |
| 2016 ] | 2020 ] |
| 2017 deps = [ | 2021 deps = [ |
| 2018 ":net_fuzzer_test_support", | 2022 ":net_fuzzer_test_support", |
| 2019 ":test_support", | 2023 ":test_support", |
| 2020 "//base", | 2024 "//base", |
| 2021 "//net", | 2025 "//net", |
| 2022 ] | 2026 ] |
| 2023 } | 2027 } |
| 2028 |
| 2029 fuzzer_test("net_url_request_fuzzer") { |
| 2030 sources = [ |
| 2031 "url_request/url_request_fuzzer.cc", |
| 2032 ] |
| 2033 deps = [ |
| 2034 ":net_fuzzer_test_support", |
| 2035 ":test_support", |
| 2036 "//base", |
| 2037 "//net", |
| 2038 ] |
| 2039 } |
| OLD | NEW |