| 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 1672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1683 } | 1683 } |
| 1684 } | 1684 } |
| 1685 } | 1685 } |
| 1686 | 1686 |
| 1687 # Fuzzers | 1687 # Fuzzers |
| 1688 | 1688 |
| 1689 source_set("net_fuzzer_test_support") { | 1689 source_set("net_fuzzer_test_support") { |
| 1690 testonly = true | 1690 testonly = true |
| 1691 | 1691 |
| 1692 sources = [ | 1692 sources = [ |
| 1693 "base/fuzzed_data_provider.cc", |
| 1694 "base/fuzzed_data_provider.h", |
| 1693 "base/fuzzer_test_support.cc", | 1695 "base/fuzzer_test_support.cc", |
| 1694 "socket/fuzzed_socket.cc", | 1696 "socket/fuzzed_socket.cc", |
| 1695 "socket/fuzzed_socket.h", | 1697 "socket/fuzzed_socket.h", |
| 1698 "socket/fuzzed_socket_factory.cc", |
| 1699 "socket/fuzzed_socket_factory.h", |
| 1696 ] | 1700 ] |
| 1697 deps = [ | 1701 deps = [ |
| 1698 "//base", | 1702 "//base", |
| 1699 "//base:i18n", | 1703 "//base:i18n", |
| 1700 "//net", | 1704 "//net", |
| 1701 ] | 1705 ] |
| 1702 } | 1706 } |
| 1703 | 1707 |
| 1704 fuzzer_test("net_mime_sniffer_fuzzer") { | 1708 fuzzer_test("net_mime_sniffer_fuzzer") { |
| 1705 sources = [ | 1709 sources = [ |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1914 sources = [ | 1918 sources = [ |
| 1915 "socket/socks5_client_socket_fuzzer.cc", | 1919 "socket/socks5_client_socket_fuzzer.cc", |
| 1916 ] | 1920 ] |
| 1917 deps = [ | 1921 deps = [ |
| 1918 ":net_fuzzer_test_support", | 1922 ":net_fuzzer_test_support", |
| 1919 ":test_support", | 1923 ":test_support", |
| 1920 "//base", | 1924 "//base", |
| 1921 "//net", | 1925 "//net", |
| 1922 ] | 1926 ] |
| 1923 } | 1927 } |
| 1928 |
| 1929 fuzzer_test("net_url_request_fuzzer") { |
| 1930 sources = [ |
| 1931 "url_request/url_request_fuzzer.cc", |
| 1932 ] |
| 1933 deps = [ |
| 1934 ":net_fuzzer_test_support", |
| 1935 ":test_support", |
| 1936 "//base", |
| 1937 "//net", |
| 1938 ] |
| 1939 dict = "data/http/http.dict" |
| 1940 } |
| OLD | NEW |