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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 "command_buffer/tests/gl_ext_multisample_compatibility_unittest.cc", | 140 "command_buffer/tests/gl_ext_multisample_compatibility_unittest.cc", |
141 "command_buffer/tests/gl_ext_srgb_unittest.cc", | 141 "command_buffer/tests/gl_ext_srgb_unittest.cc", |
142 "command_buffer/tests/gl_fence_sync_unittest.cc", | 142 "command_buffer/tests/gl_fence_sync_unittest.cc", |
143 "command_buffer/tests/gl_gpu_memory_buffer_unittest.cc", | 143 "command_buffer/tests/gl_gpu_memory_buffer_unittest.cc", |
144 "command_buffer/tests/gl_iosurface_readback_workaround_unittest.cc", | 144 "command_buffer/tests/gl_iosurface_readback_workaround_unittest.cc", |
145 "command_buffer/tests/gl_lose_context_chromium_unittest.cc", | 145 "command_buffer/tests/gl_lose_context_chromium_unittest.cc", |
146 "command_buffer/tests/gl_manager.cc", | 146 "command_buffer/tests/gl_manager.cc", |
147 "command_buffer/tests/gl_manager.h", | 147 "command_buffer/tests/gl_manager.h", |
148 "command_buffer/tests/gl_map_buffer_range_unittest.cc", | 148 "command_buffer/tests/gl_map_buffer_range_unittest.cc", |
149 "command_buffer/tests/gl_native_gmb_backbuffer_unittest.cc", | 149 "command_buffer/tests/gl_native_gmb_backbuffer_unittest.cc", |
| 150 "command_buffer/tests/gl_object_bindings_unittest.cc", |
150 "command_buffer/tests/gl_pointcoord_unittest.cc", | 151 "command_buffer/tests/gl_pointcoord_unittest.cc", |
151 "command_buffer/tests/gl_program_unittest.cc", | 152 "command_buffer/tests/gl_program_unittest.cc", |
152 "command_buffer/tests/gl_query_unittest.cc", | 153 "command_buffer/tests/gl_query_unittest.cc", |
153 "command_buffer/tests/gl_readback_unittest.cc", | 154 "command_buffer/tests/gl_readback_unittest.cc", |
154 "command_buffer/tests/gl_request_extension_unittest.cc", | 155 "command_buffer/tests/gl_request_extension_unittest.cc", |
155 "command_buffer/tests/gl_shared_resources_unittest.cc", | 156 "command_buffer/tests/gl_shared_resources_unittest.cc", |
156 "command_buffer/tests/gl_stream_draw_unittest.cc", | 157 "command_buffer/tests/gl_stream_draw_unittest.cc", |
157 "command_buffer/tests/gl_test_utils.cc", | 158 "command_buffer/tests/gl_test_utils.cc", |
158 "command_buffer/tests/gl_test_utils.h", | 159 "command_buffer/tests/gl_test_utils.h", |
159 "command_buffer/tests/gl_tests_main.cc", | 160 "command_buffer/tests/gl_tests_main.cc", |
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
396 "//ui/gfx/geometry", | 397 "//ui/gfx/geometry", |
397 "//ui/gl", | 398 "//ui/gl", |
398 "//ui/gl:test_support", | 399 "//ui/gl:test_support", |
399 ] | 400 ] |
400 | 401 |
401 libfuzzer_options = [ | 402 libfuzzer_options = [ |
402 "max_len=16384", | 403 "max_len=16384", |
403 "use_traces=1", | 404 "use_traces=1", |
404 ] | 405 ] |
405 } | 406 } |
OLD | NEW |