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

Unified Diff: gpu/BUILD.gn

Issue 2564393002: Enable gpu_fuzzer_angle for Linux only.
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 | no next file » | 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 cca3119595de0dd3cb0e7078b1f41c3eb50227e6..ad35cdc176b19b25967880b55abaf7fcf5ab5b35 100644
--- a/gpu/BUILD.gn
+++ b/gpu/BUILD.gn
@@ -402,22 +402,24 @@ fuzzer_test("gpu_fuzzer") {
libfuzzer_options = [ "max_len=16384" ]
}
-fuzzer_test("gpu_fuzzer_angle") {
- sources = [
- "command_buffer/tests/fuzzer_main.cc",
- ]
+if (is_linux) {
+ fuzzer_test("gpu_fuzzer_angle") {
+ sources = [
+ "command_buffer/tests/fuzzer_main.cc",
+ ]
- defines = [ "GPU_FUZZER_USE_ANGLE" ]
+ 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",
- ]
+ 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" ]
+ libfuzzer_options = [ "max_len=16384" ]
+ }
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698