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

Unified Diff: gpu/BUILD.gn

Issue 2541843004: Add a version of gpu_fuzzer that is backed by the NULL ANGLE backend (Closed)
Patch Set: 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
« no previous file with comments | « no previous file | gpu/command_buffer/service/gles2_cmd_decoder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/BUILD.gn
diff --git a/gpu/BUILD.gn b/gpu/BUILD.gn
index e2cd4830b9c4193deefd588d115199f235af93df..88efa684dcdf9ffc6024f53a5e99b246bf168f67 100644
--- a/gpu/BUILD.gn
+++ b/gpu/BUILD.gn
@@ -404,3 +404,27 @@ fuzzer_test("gpu_fuzzer") {
"use_traces=1",
]
}
+
+fuzzer_test("gpu_fuzzer_angle") {
+ sources = [
+ "command_buffer/tests/fuzzer_main.cc",
+ ]
+
+ defines = [ "GPU_FUZZER_USE_ANGLE" ]
+
+ deps = [
+ ":gpu",
+ "//base",
+ "//base/third_party/dynamic_annotations",
+ "//gpu/command_buffer/common:gles2_utils",
+ "//ui/gfx/geometry",
+ "//ui/gl",
+ "//ui/gl:test_support",
+ ]
+
+ libfuzzer_options = [
+ "max_len=16384",
+ "use_traces=1",
mmoroz 2016/12/01 15:28:31 That flag seems to be out-of-date (or may be it is
piman 2016/12/01 18:19:28 Thanks, I'll take it out (including above)
piman 2016/12/08 23:21:46 Done.
+ "rss_limit_mb=4096",
mmoroz 2016/12/01 15:26:05 How important is this memory volume? Our current V
piman 2016/12/01 18:19:28 Right now it needs around 3.5GB just to run the ex
mmoroz 2016/12/01 18:22:52 Hm, yeah, we probably need to shrink it if that's
piman 2016/12/08 23:21:46 Removed flag, as discussed.
+ ]
+}
« no previous file with comments | « no previous file | gpu/command_buffer/service/gles2_cmd_decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698