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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 "command_buffer/tests/gl_texture_mailbox_unittest.cc", | 168 "command_buffer/tests/gl_texture_mailbox_unittest.cc", |
169 "command_buffer/tests/gl_texture_storage_unittest.cc", | 169 "command_buffer/tests/gl_texture_storage_unittest.cc", |
170 "command_buffer/tests/gl_unittest.cc", | 170 "command_buffer/tests/gl_unittest.cc", |
171 "command_buffer/tests/gl_unittests_android.cc", | 171 "command_buffer/tests/gl_unittests_android.cc", |
172 "command_buffer/tests/gl_virtual_contexts_unittest.cc", | 172 "command_buffer/tests/gl_virtual_contexts_unittest.cc", |
173 "command_buffer/tests/occlusion_query_unittest.cc", | 173 "command_buffer/tests/occlusion_query_unittest.cc", |
174 "command_buffer/tests/texture_image_factory.cc", | 174 "command_buffer/tests/texture_image_factory.cc", |
175 "command_buffer/tests/texture_image_factory.h", | 175 "command_buffer/tests/texture_image_factory.h", |
176 "ipc/client/gpu_context_tests.h", | 176 "ipc/client/gpu_context_tests.h", |
177 "ipc/client/gpu_in_process_context_tests.cc", | 177 "ipc/client/gpu_in_process_context_tests.cc", |
| 178 "ipc/service/direct_composition_surface_win_unittest.cc", |
178 ] | 179 ] |
179 | 180 |
180 defines = [ "GL_GLEXT_PROTOTYPES" ] | 181 defines = [ "GL_GLEXT_PROTOTYPES" ] |
181 | 182 |
182 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 183 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
183 | 184 |
184 deps = [ | 185 deps = [ |
185 ":gpu", | 186 ":gpu", |
186 ":test_support", | 187 ":test_support", |
187 "//base", | 188 "//base", |
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
426 "//base/third_party/dynamic_annotations", | 427 "//base/third_party/dynamic_annotations", |
427 "//gpu/command_buffer/common:gles2_utils", | 428 "//gpu/command_buffer/common:gles2_utils", |
428 "//ui/gfx/geometry", | 429 "//ui/gfx/geometry", |
429 "//ui/gl", | 430 "//ui/gl", |
430 "//ui/gl:test_support", | 431 "//ui/gl:test_support", |
431 ] | 432 ] |
432 | 433 |
433 libfuzzer_options = [ "max_len=16384" ] | 434 libfuzzer_options = [ "max_len=16384" ] |
434 } | 435 } |
435 } | 436 } |
OLD | NEW |