| 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 "command_buffer/tests/gl_texture_mailbox_unittest.cc", | 161 "command_buffer/tests/gl_texture_mailbox_unittest.cc", |
| 162 "command_buffer/tests/gl_texture_storage_unittest.cc", | 162 "command_buffer/tests/gl_texture_storage_unittest.cc", |
| 163 "command_buffer/tests/gl_unittest.cc", | 163 "command_buffer/tests/gl_unittest.cc", |
| 164 "command_buffer/tests/gl_unittests_android.cc", | 164 "command_buffer/tests/gl_unittests_android.cc", |
| 165 "command_buffer/tests/gl_virtual_contexts_unittest.cc", | 165 "command_buffer/tests/gl_virtual_contexts_unittest.cc", |
| 166 "command_buffer/tests/occlusion_query_unittest.cc", | 166 "command_buffer/tests/occlusion_query_unittest.cc", |
| 167 "command_buffer/tests/texture_image_factory.cc", | 167 "command_buffer/tests/texture_image_factory.cc", |
| 168 "command_buffer/tests/texture_image_factory.h", | 168 "command_buffer/tests/texture_image_factory.h", |
| 169 "ipc/client/gpu_context_tests.h", | 169 "ipc/client/gpu_context_tests.h", |
| 170 "ipc/client/gpu_in_process_context_tests.cc", | 170 "ipc/client/gpu_in_process_context_tests.cc", |
| 171 "ipc/service/direct_composition_surface_win_unittest.cc", |
| 171 ] | 172 ] |
| 172 | 173 |
| 173 defines = [ "GL_GLEXT_PROTOTYPES" ] | 174 defines = [ "GL_GLEXT_PROTOTYPES" ] |
| 174 | 175 |
| 175 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 176 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 176 | 177 |
| 177 deps = [ | 178 deps = [ |
| 178 ":gpu", | 179 ":gpu", |
| 179 ":test_support", | 180 ":test_support", |
| 180 "//base", | 181 "//base", |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 419 "//base/third_party/dynamic_annotations", | 420 "//base/third_party/dynamic_annotations", |
| 420 "//gpu/command_buffer/common:gles2_utils", | 421 "//gpu/command_buffer/common:gles2_utils", |
| 421 "//ui/gfx/geometry", | 422 "//ui/gfx/geometry", |
| 422 "//ui/gl", | 423 "//ui/gl", |
| 423 "//ui/gl:test_support", | 424 "//ui/gl:test_support", |
| 424 ] | 425 ] |
| 425 | 426 |
| 426 libfuzzer_options = [ "max_len=16384" ] | 427 libfuzzer_options = [ "max_len=16384" ] |
| 427 } | 428 } |
| 428 } | 429 } |
| OLD | NEW |