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

Side by Side Diff: gpu/BUILD.gn

Issue 2646243002: Use IDCompositionSurface to implement DirectCompositionSurfaceWin. (Closed)
Patch Set: more changes Created 3 years, 11 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 ] 171 ]
172 172
173 if (is_win) {
174 sources += [ "ipc/service/direct_composition_surface_win_unittest.cc" ]
175 }
176
173 defines = [ "GL_GLEXT_PROTOTYPES" ] 177 defines = [ "GL_GLEXT_PROTOTYPES" ]
174 178
175 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 179 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
176 180
177 deps = [ 181 deps = [
178 ":gpu", 182 ":gpu",
179 ":test_support", 183 ":test_support",
180 "//base", 184 "//base",
181 "//base/test:test_support", 185 "//base/test:test_support",
182 "//base/third_party/dynamic_annotations", 186 "//base/third_party/dynamic_annotations",
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
419 "//base/third_party/dynamic_annotations", 423 "//base/third_party/dynamic_annotations",
420 "//gpu/command_buffer/common:gles2_utils", 424 "//gpu/command_buffer/common:gles2_utils",
421 "//ui/gfx/geometry", 425 "//ui/gfx/geometry",
422 "//ui/gl", 426 "//ui/gl",
423 "//ui/gl:test_support", 427 "//ui/gl:test_support",
424 ] 428 ]
425 429
426 libfuzzer_options = [ "max_len=16384" ] 430 libfuzzer_options = [ "max_len=16384" ]
427 } 431 }
428 } 432 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698