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

Side by Side Diff: gpu/BUILD.gn

Issue 2646243002: Use IDCompositionSurface to implement DirectCompositionSurfaceWin. (Closed)
Patch Set: add unittest and move implementation around Created 3 years, 10 months 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 "command_buffer/tests/gl_texture_mailbox_unittest.cc", 164 "command_buffer/tests/gl_texture_mailbox_unittest.cc",
165 "command_buffer/tests/gl_texture_storage_unittest.cc", 165 "command_buffer/tests/gl_texture_storage_unittest.cc",
166 "command_buffer/tests/gl_unittest.cc", 166 "command_buffer/tests/gl_unittest.cc",
167 "command_buffer/tests/gl_unittests_android.cc", 167 "command_buffer/tests/gl_unittests_android.cc",
168 "command_buffer/tests/gl_virtual_contexts_unittest.cc", 168 "command_buffer/tests/gl_virtual_contexts_unittest.cc",
169 "command_buffer/tests/occlusion_query_unittest.cc", 169 "command_buffer/tests/occlusion_query_unittest.cc",
170 "command_buffer/tests/texture_image_factory.cc", 170 "command_buffer/tests/texture_image_factory.cc",
171 "command_buffer/tests/texture_image_factory.h", 171 "command_buffer/tests/texture_image_factory.h",
172 "ipc/client/gpu_context_tests.h", 172 "ipc/client/gpu_context_tests.h",
173 "ipc/client/gpu_in_process_context_tests.cc", 173 "ipc/client/gpu_in_process_context_tests.cc",
174 "ipc/service/direct_composition_surface_win_unittest.cc",
174 ] 175 ]
175 176
176 defines = [ "GL_GLEXT_PROTOTYPES" ] 177 defines = [ "GL_GLEXT_PROTOTYPES" ]
177 178
178 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 179 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
179 180
180 deps = [ 181 deps = [
181 ":gpu", 182 ":gpu",
182 ":test_support", 183 ":test_support",
183 "//base", 184 "//base",
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 "//base/third_party/dynamic_annotations", 423 "//base/third_party/dynamic_annotations",
423 "//gpu/command_buffer/common:gles2_utils", 424 "//gpu/command_buffer/common:gles2_utils",
424 "//ui/gfx/geometry", 425 "//ui/gfx/geometry",
425 "//ui/gl", 426 "//ui/gl",
426 "//ui/gl:test_support", 427 "//ui/gl:test_support",
427 ] 428 ]
428 429
429 libfuzzer_options = [ "max_len=16384" ] 430 libfuzzer_options = [ "max_len=16384" ]
430 } 431 }
431 } 432 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698