Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(35)

Side by Side Diff: gpu/BUILD.gn

Issue 2383753002: gpu: Add GpuFence framework.
Patch Set: rebase Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 "command_buffer/tests/gl_copy_tex_image_2d_workaround_unittest.cc", 133 "command_buffer/tests/gl_copy_tex_image_2d_workaround_unittest.cc",
134 "command_buffer/tests/gl_copy_texture_CHROMIUM_unittest.cc", 134 "command_buffer/tests/gl_copy_texture_CHROMIUM_unittest.cc",
135 "command_buffer/tests/gl_cube_map_texture_unittest.cc", 135 "command_buffer/tests/gl_cube_map_texture_unittest.cc",
136 "command_buffer/tests/gl_depth_texture_unittest.cc", 136 "command_buffer/tests/gl_depth_texture_unittest.cc",
137 "command_buffer/tests/gl_deschedule_unittest.cc", 137 "command_buffer/tests/gl_deschedule_unittest.cc",
138 "command_buffer/tests/gl_dynamic_config_unittest.cc", 138 "command_buffer/tests/gl_dynamic_config_unittest.cc",
139 "command_buffer/tests/gl_ext_blend_func_extended_unittest.cc", 139 "command_buffer/tests/gl_ext_blend_func_extended_unittest.cc",
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_fence_unittest.cc",
143 "command_buffer/tests/gl_gpu_memory_buffer_unittest.cc", 144 "command_buffer/tests/gl_gpu_memory_buffer_unittest.cc",
144 "command_buffer/tests/gl_iosurface_readback_workaround_unittest.cc", 145 "command_buffer/tests/gl_iosurface_readback_workaround_unittest.cc",
145 "command_buffer/tests/gl_lose_context_chromium_unittest.cc", 146 "command_buffer/tests/gl_lose_context_chromium_unittest.cc",
146 "command_buffer/tests/gl_manager.cc", 147 "command_buffer/tests/gl_manager.cc",
147 "command_buffer/tests/gl_manager.h", 148 "command_buffer/tests/gl_manager.h",
148 "command_buffer/tests/gl_map_buffer_range_unittest.cc", 149 "command_buffer/tests/gl_map_buffer_range_unittest.cc",
149 "command_buffer/tests/gl_native_gmb_backbuffer_unittest.cc", 150 "command_buffer/tests/gl_native_gmb_backbuffer_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",
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
388 "//ui/gfx/geometry", 389 "//ui/gfx/geometry",
389 "//ui/gl", 390 "//ui/gl",
390 "//ui/gl:test_support", 391 "//ui/gl:test_support",
391 ] 392 ]
392 393
393 libfuzzer_options = [ 394 libfuzzer_options = [
394 "max_len=16384", 395 "max_len=16384",
395 "use_traces=1", 396 "use_traces=1",
396 ] 397 ]
397 } 398 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698