Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1576)

Unified Diff: net/BUILD.gn

Issue 2292083002: Add a fuzzer for WebSocketDeflateStream::ReadFrames() (Closed)
Patch Set: Add string_piece.h include Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | net/websockets/websocket_deflate_stream_fuzzer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/BUILD.gn
diff --git a/net/BUILD.gn b/net/BUILD.gn
index 38af57171b315afb085d3649ade09c5379b3d24d..952e97dab56a299ff940e7808776497d0387b26a 100644
--- a/net/BUILD.gn
+++ b/net/BUILD.gn
@@ -1935,6 +1935,18 @@ fuzzer_test("net_unescape_url_component_fuzzer") {
libfuzzer_options = [ "max_len = 2048" ]
}
+fuzzer_test("net_websocket_deflate_stream_fuzzer") {
+ sources = [
+ "websockets/websocket_deflate_stream_fuzzer.cc",
+ ]
+ deps = [
+ ":net_fuzzer_test_support",
+ "//net",
+ ]
+ dict = "data/fuzzer_dictionaries/net_websocket_frame_parser_fuzzer.dict"
+ libfuzzer_options = [ "max_len=512" ]
+}
+
fuzzer_test("net_websocket_frame_parser_fuzzer") {
sources = [
"websockets/websocket_frame_parser_fuzzer.cc",
« no previous file with comments | « no previous file | net/websockets/websocket_deflate_stream_fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698