| 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 1917 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1928 ] | 1928 ] |
| 1929 deps = [ | 1929 deps = [ |
| 1930 ":net_fuzzer_test_support", | 1930 ":net_fuzzer_test_support", |
| 1931 "//base", | 1931 "//base", |
| 1932 "//net", | 1932 "//net", |
| 1933 ] | 1933 ] |
| 1934 dict = "base/unescape_url_component_fuzzer.dict" | 1934 dict = "base/unescape_url_component_fuzzer.dict" |
| 1935 libfuzzer_options = [ "max_len = 2048" ] | 1935 libfuzzer_options = [ "max_len = 2048" ] |
| 1936 } | 1936 } |
| 1937 | 1937 |
| 1938 fuzzer_test("net_websocket_deflate_stream_fuzzer") { |
| 1939 sources = [ |
| 1940 "websockets/websocket_deflate_stream_fuzzer.cc", |
| 1941 ] |
| 1942 deps = [ |
| 1943 ":net_fuzzer_test_support", |
| 1944 "//net", |
| 1945 ] |
| 1946 dict = "data/fuzzer_dictionaries/net_websocket_frame_parser_fuzzer.dict" |
| 1947 libfuzzer_options = [ "max_len=512" ] |
| 1948 } |
| 1949 |
| 1938 fuzzer_test("net_websocket_frame_parser_fuzzer") { | 1950 fuzzer_test("net_websocket_frame_parser_fuzzer") { |
| 1939 sources = [ | 1951 sources = [ |
| 1940 "websockets/websocket_frame_parser_fuzzer.cc", | 1952 "websockets/websocket_frame_parser_fuzzer.cc", |
| 1941 ] | 1953 ] |
| 1942 deps = [ | 1954 deps = [ |
| 1943 ":net_fuzzer_test_support", | 1955 ":net_fuzzer_test_support", |
| 1944 "//net", | 1956 "//net", |
| 1945 ] | 1957 ] |
| 1946 dict = "data/fuzzer_dictionaries/net_websocket_frame_parser_fuzzer.dict" | 1958 dict = "data/fuzzer_dictionaries/net_websocket_frame_parser_fuzzer.dict" |
| 1947 } | 1959 } |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2009 "url_request/url_request_fuzzer.cc", | 2021 "url_request/url_request_fuzzer.cc", |
| 2010 ] | 2022 ] |
| 2011 deps = [ | 2023 deps = [ |
| 2012 ":net_fuzzer_test_support", | 2024 ":net_fuzzer_test_support", |
| 2013 ":test_support", | 2025 ":test_support", |
| 2014 "//base", | 2026 "//base", |
| 2015 "//net", | 2027 "//net", |
| 2016 ] | 2028 ] |
| 2017 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" | 2029 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" |
| 2018 } | 2030 } |
| OLD | NEW |