| 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 1670 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1681 "socket/fuzzed_socket_factory.cc", | 1681 "socket/fuzzed_socket_factory.cc", |
| 1682 "socket/fuzzed_socket_factory.h", | 1682 "socket/fuzzed_socket_factory.h", |
| 1683 ] | 1683 ] |
| 1684 deps = [ | 1684 deps = [ |
| 1685 "//base", | 1685 "//base", |
| 1686 "//base:i18n", | 1686 "//base:i18n", |
| 1687 "//net", | 1687 "//net", |
| 1688 ] | 1688 ] |
| 1689 } | 1689 } |
| 1690 | 1690 |
| 1691 fuzzer_test("net_data_job_fuzzer") { |
| 1692 sources = [ |
| 1693 "url_request/url_request_data_job_fuzzer.cc", |
| 1694 ] |
| 1695 deps = [ |
| 1696 ":net_fuzzer_test_support", |
| 1697 ":test_support", |
| 1698 "//base", |
| 1699 "//net", |
| 1700 ] |
| 1701 } |
| 1702 |
| 1691 fuzzer_test("net_mime_sniffer_fuzzer") { | 1703 fuzzer_test("net_mime_sniffer_fuzzer") { |
| 1692 sources = [ | 1704 sources = [ |
| 1693 "base/mime_sniffer_fuzzer.cc", | 1705 "base/mime_sniffer_fuzzer.cc", |
| 1694 ] | 1706 ] |
| 1695 deps = [ | 1707 deps = [ |
| 1696 ":net_fuzzer_test_support", | 1708 ":net_fuzzer_test_support", |
| 1697 "//base", | 1709 "//base", |
| 1698 "//net", | 1710 "//net", |
| 1699 ] | 1711 ] |
| 1700 } | 1712 } |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1913 sources = [ | 1925 sources = [ |
| 1914 "url_request/url_request_fuzzer.cc", | 1926 "url_request/url_request_fuzzer.cc", |
| 1915 ] | 1927 ] |
| 1916 deps = [ | 1928 deps = [ |
| 1917 ":net_fuzzer_test_support", | 1929 ":net_fuzzer_test_support", |
| 1918 ":test_support", | 1930 ":test_support", |
| 1919 "//base", | 1931 "//base", |
| 1920 "//net", | 1932 "//net", |
| 1921 ] | 1933 ] |
| 1922 } | 1934 } |
| OLD | NEW |