| Index: gpu/BUILD.gn
|
| diff --git a/gpu/BUILD.gn b/gpu/BUILD.gn
|
| index e2cd4830b9c4193deefd588d115199f235af93df..cca3119595de0dd3cb0e7078b1f41c3eb50227e6 100644
|
| --- a/gpu/BUILD.gn
|
| +++ b/gpu/BUILD.gn
|
| @@ -399,8 +399,25 @@ fuzzer_test("gpu_fuzzer") {
|
| "//ui/gl:test_support",
|
| ]
|
|
|
| - libfuzzer_options = [
|
| - "max_len=16384",
|
| - "use_traces=1",
|
| + libfuzzer_options = [ "max_len=16384" ]
|
| +}
|
| +
|
| +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" ]
|
| }
|
|
|