OLD | NEW |
---|---|
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//testing/libfuzzer/fuzzer_test.gni") | 5 import("//testing/libfuzzer/fuzzer_test.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 | 8 |
9 config("gpu_implementation") { | 9 config("gpu_implementation") { |
10 defines = [ "GPU_IMPLEMENTATION" ] | 10 defines = [ "GPU_IMPLEMENTATION" ] |
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
397 "//ui/gfx/geometry", | 397 "//ui/gfx/geometry", |
398 "//ui/gl", | 398 "//ui/gl", |
399 "//ui/gl:test_support", | 399 "//ui/gl:test_support", |
400 ] | 400 ] |
401 | 401 |
402 libfuzzer_options = [ | 402 libfuzzer_options = [ |
403 "max_len=16384", | 403 "max_len=16384", |
404 "use_traces=1", | 404 "use_traces=1", |
405 ] | 405 ] |
406 } | 406 } |
407 | |
408 fuzzer_test("gpu_fuzzer_angle") { | |
409 sources = [ | |
410 "command_buffer/tests/fuzzer_main.cc", | |
411 ] | |
412 | |
413 defines = [ "GPU_FUZZER_USE_ANGLE" ] | |
414 | |
415 deps = [ | |
416 ":gpu", | |
417 "//base", | |
418 "//base/third_party/dynamic_annotations", | |
419 "//gpu/command_buffer/common:gles2_utils", | |
420 "//ui/gfx/geometry", | |
421 "//ui/gl", | |
422 "//ui/gl:test_support", | |
423 ] | |
424 | |
425 libfuzzer_options = [ | |
426 "max_len=16384", | |
427 "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.
| |
428 "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.
| |
429 ] | |
430 } | |
OLD | NEW |