| 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 "command_buffer/tests/gl_dynamic_config_unittest.cc", | 136 "command_buffer/tests/gl_dynamic_config_unittest.cc", |
| 137 "command_buffer/tests/gl_ext_blend_func_extended_unittest.cc", | 137 "command_buffer/tests/gl_ext_blend_func_extended_unittest.cc", |
| 138 "command_buffer/tests/gl_ext_multisample_compatibility_unittest.cc", | 138 "command_buffer/tests/gl_ext_multisample_compatibility_unittest.cc", |
| 139 "command_buffer/tests/gl_ext_srgb_unittest.cc", | 139 "command_buffer/tests/gl_ext_srgb_unittest.cc", |
| 140 "command_buffer/tests/gl_fence_sync_unittest.cc", | 140 "command_buffer/tests/gl_fence_sync_unittest.cc", |
| 141 "command_buffer/tests/gl_gpu_memory_buffer_unittest.cc", | 141 "command_buffer/tests/gl_gpu_memory_buffer_unittest.cc", |
| 142 "command_buffer/tests/gl_iosurface_readback_workaround_unittest.cc", | 142 "command_buffer/tests/gl_iosurface_readback_workaround_unittest.cc", |
| 143 "command_buffer/tests/gl_lose_context_chromium_unittest.cc", | 143 "command_buffer/tests/gl_lose_context_chromium_unittest.cc", |
| 144 "command_buffer/tests/gl_manager.cc", | 144 "command_buffer/tests/gl_manager.cc", |
| 145 "command_buffer/tests/gl_manager.h", | 145 "command_buffer/tests/gl_manager.h", |
| 146 "command_buffer/tests/gl_map_buffer_range_unittest.cc", |
| 146 "command_buffer/tests/gl_native_gmb_backbuffer_unittest.cc", | 147 "command_buffer/tests/gl_native_gmb_backbuffer_unittest.cc", |
| 147 "command_buffer/tests/gl_pointcoord_unittest.cc", | 148 "command_buffer/tests/gl_pointcoord_unittest.cc", |
| 148 "command_buffer/tests/gl_program_unittest.cc", | 149 "command_buffer/tests/gl_program_unittest.cc", |
| 149 "command_buffer/tests/gl_query_unittest.cc", | 150 "command_buffer/tests/gl_query_unittest.cc", |
| 150 "command_buffer/tests/gl_readback_unittest.cc", | 151 "command_buffer/tests/gl_readback_unittest.cc", |
| 151 "command_buffer/tests/gl_request_extension_unittest.cc", | 152 "command_buffer/tests/gl_request_extension_unittest.cc", |
| 152 "command_buffer/tests/gl_shared_resources_unittest.cc", | 153 "command_buffer/tests/gl_shared_resources_unittest.cc", |
| 153 "command_buffer/tests/gl_stream_draw_unittest.cc", | 154 "command_buffer/tests/gl_stream_draw_unittest.cc", |
| 154 "command_buffer/tests/gl_test_utils.cc", | 155 "command_buffer/tests/gl_test_utils.cc", |
| 155 "command_buffer/tests/gl_test_utils.h", | 156 "command_buffer/tests/gl_test_utils.h", |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 385 "//ui/gfx/geometry", | 386 "//ui/gfx/geometry", |
| 386 "//ui/gl", | 387 "//ui/gl", |
| 387 "//ui/gl:test_support", | 388 "//ui/gl:test_support", |
| 388 ] | 389 ] |
| 389 | 390 |
| 390 libfuzzer_options = [ | 391 libfuzzer_options = [ |
| 391 "max_len=16384", | 392 "max_len=16384", |
| 392 "use_traces=1", | 393 "use_traces=1", |
| 393 ] | 394 ] |
| 394 } | 395 } |
| OLD | NEW |