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

Unified Diff: net/BUILD.gn

Issue 2115563002: [libfuzzer] Added script for dictionary generation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: A couple of fixes ported from local version. Created 4 years, 6 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 | testing/libfuzzer/dictionary_generator.py » ('j') | testing/libfuzzer/dictionary_generator.py » ('J')
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 617cd80d23bcd84eed3398a2193f693468dc35f4..2972664a530182948b25ebb54a1c97d57d4757f5 100644
--- a/net/BUILD.gn
+++ b/net/BUILD.gn
@@ -1967,7 +1967,7 @@ fuzzer_test("net_http_stream_parser_fuzzer") {
"//base",
"//net",
]
- dict = "data/http/http.dict"
+ dict = "//testing/libfuzzer/fuzzers/dicts/generated/net_http_stream_parser_fuzzer.dict"
inferno 2016/07/04 00:21:55 we should probably prefer to keep these dicts next
mmoroz 2016/07/06 15:06:18 Done.
}
fuzzer_test("net_ftp_ctrl_response_fuzzer") {
@@ -2013,6 +2013,7 @@ fuzzer_test("net_websocket_frame_parser_fuzzer") {
":net_fuzzer_test_support",
"//net",
]
+ dict = "//testing/libfuzzer/fuzzers/dicts/generated/net_websocket_frame_parser_fuzzer.dict"
}
fuzzer_test("net_http_chunked_decoder_fuzzer") {
@@ -2036,7 +2037,7 @@ fuzzer_test("net_http_proxy_client_socket_fuzzer") {
"//base",
"//net",
]
- dict = "data/http/http.dict"
+ dict = "//testing/libfuzzer/fuzzers/dicts/generated/net_http_proxy_client_socket_fuzzer.dict"
}
fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") {
@@ -2084,5 +2085,6 @@ fuzzer_test("net_url_request_fuzzer") {
"//base",
"//net",
]
- dict = "data/http/http.dict"
+ dict =
+ "//testing/libfuzzer/fuzzers/dicts/generated/net_url_request_fuzzer.dict"
}
« no previous file with comments | « no previous file | testing/libfuzzer/dictionary_generator.py » ('j') | testing/libfuzzer/dictionary_generator.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698