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

Unified Diff: third_party/WebKit/Source/platform/BUILD.gn

Issue 2546233002: Fuzzer for TextCodecs (Closed)
Patch Set: Moved to platform/ Created 4 years 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
Index: third_party/WebKit/Source/platform/BUILD.gn
diff --git a/third_party/WebKit/Source/platform/BUILD.gn b/third_party/WebKit/Source/platform/BUILD.gn
index ec4be49fc7f924a9086d439ba199b0e6d534c060..77dd93415447f82f78fdb081b20d69470afaf26b 100644
--- a/third_party/WebKit/Source/platform/BUILD.gn
+++ b/third_party/WebKit/Source/platform/BUILD.gn
@@ -2039,6 +2039,19 @@ fuzzer_test("feature_policy_fuzzer") {
seed_corpus = "//testing/libfuzzer/fuzzers/feature_policy_corpus"
}
+# Fuzzer for wtf::TextCodec.
+fuzzer_test("blink_text_codec_fuzzer") {
+ sources = [
+ "TextCodecFuzzer.cpp",
+ ]
+ deps = [
+ ":blink_fuzzer_test_support",
+ ":platform",
+ ]
+
+ # Seed corpus uploaded to Google Cloud Storage bucket used by ClusterFuzz.
+}
+
# NOTE: These are legacy unit tests and tests that require a Platform
# object. Do not add more unless the test requires a Platform object.
# These tests are a part of the webkit_unit_tests binary.

Powered by Google App Engine
This is Rietveld 408576698