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 1938 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1949 | 1949 |
1950 fuzzer_test("net_websocket_frame_parser_fuzzer") { | 1950 fuzzer_test("net_websocket_frame_parser_fuzzer") { |
1951 sources = [ | 1951 sources = [ |
1952 "websockets/websocket_frame_parser_fuzzer.cc", | 1952 "websockets/websocket_frame_parser_fuzzer.cc", |
1953 ] | 1953 ] |
1954 deps = [ | 1954 deps = [ |
1955 ":net_fuzzer_test_support", | 1955 ":net_fuzzer_test_support", |
1956 "//net", | 1956 "//net", |
1957 ] | 1957 ] |
1958 dict = "data/fuzzer_dictionaries/net_websocket_frame_parser_fuzzer.dict" | 1958 dict = "data/fuzzer_dictionaries/net_websocket_frame_parser_fuzzer.dict" |
| 1959 libfuzzer_options = [ "max_len=256" ] |
1959 } | 1960 } |
1960 | 1961 |
1961 fuzzer_test("net_http_chunked_decoder_fuzzer") { | 1962 fuzzer_test("net_http_chunked_decoder_fuzzer") { |
1962 sources = [ | 1963 sources = [ |
1963 "http/http_chunked_decoder_fuzzer.cc", | 1964 "http/http_chunked_decoder_fuzzer.cc", |
1964 ] | 1965 ] |
1965 deps = [ | 1966 deps = [ |
1966 ":net_fuzzer_test_support", | 1967 ":net_fuzzer_test_support", |
1967 "//net", | 1968 "//net", |
1968 ] | 1969 ] |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2021 "url_request/url_request_fuzzer.cc", | 2022 "url_request/url_request_fuzzer.cc", |
2022 ] | 2023 ] |
2023 deps = [ | 2024 deps = [ |
2024 ":net_fuzzer_test_support", | 2025 ":net_fuzzer_test_support", |
2025 ":test_support", | 2026 ":test_support", |
2026 "//base", | 2027 "//base", |
2027 "//net", | 2028 "//net", |
2028 ] | 2029 ] |
2029 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" | 2030 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" |
2030 } | 2031 } |
OLD | NEW |