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

Unified Diff: ui/gfx/BUILD.gn

Issue 2224023002: Fix unitialized data field in QCMS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: forgot actual fuzzer file 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 | « third_party/qcms/src/iccread.c ('k') | ui/gfx/color_transform_fuzzer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/BUILD.gn
diff --git a/ui/gfx/BUILD.gn b/ui/gfx/BUILD.gn
index bf496f53cb2e0f92efba89e227c50456da40c48b..03f64ba1ccb2c1c2c4f52bad186ccfde0e671be5 100644
--- a/ui/gfx/BUILD.gn
+++ b/ui/gfx/BUILD.gn
@@ -4,6 +4,7 @@
import("//build/config/ui.gni")
import("//testing/test.gni")
+import("//testing/libfuzzer/fuzzer_test.gni")
if (is_android) {
import("//build/config/android/config.gni")
@@ -738,3 +739,13 @@ if (is_android) {
jni_package = "gfx"
}
}
+
+fuzzer_test("color_transform_fuzztest") {
+ sources = [
+ "color_transform_fuzzer.cc",
+ ]
+ deps = [
+ ":gfx",
+ ]
+ libfuzzer_options = [ "max_len=1024" ]
+}
« no previous file with comments | « third_party/qcms/src/iccread.c ('k') | ui/gfx/color_transform_fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698