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

Side by Side Diff: gpu/BUILD.gn

Issue 2061743004: Implement native GMB backbuffers in the GLES2 Command Decoder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments from piman. Created 4 years, 5 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 # GYP-to-GN project mappings: 5 # GYP-to-GN project mappings:
6 # 6 #
7 # gpu.gyp:command_buffer_client => //gpu/command_buffer/client 7 # gpu.gyp:command_buffer_client => //gpu/command_buffer/client
8 # 8 #
9 # gpu.gyp:command_buffer_common => //gpu/command_buffer/common 9 # gpu.gyp:command_buffer_common => //gpu/command_buffer/common
10 # 10 #
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 "command_buffer/tests/gl_dynamic_config_unittest.cc", 165 "command_buffer/tests/gl_dynamic_config_unittest.cc",
166 "command_buffer/tests/gl_ext_blend_func_extended_unittest.cc", 166 "command_buffer/tests/gl_ext_blend_func_extended_unittest.cc",
167 "command_buffer/tests/gl_ext_multisample_compatibility_unittest.cc", 167 "command_buffer/tests/gl_ext_multisample_compatibility_unittest.cc",
168 "command_buffer/tests/gl_ext_srgb_unittest.cc", 168 "command_buffer/tests/gl_ext_srgb_unittest.cc",
169 "command_buffer/tests/gl_fence_sync_unittest.cc", 169 "command_buffer/tests/gl_fence_sync_unittest.cc",
170 "command_buffer/tests/gl_gpu_memory_buffer_unittest.cc", 170 "command_buffer/tests/gl_gpu_memory_buffer_unittest.cc",
171 "command_buffer/tests/gl_iosurface_readback_workaround_unittest.cc", 171 "command_buffer/tests/gl_iosurface_readback_workaround_unittest.cc",
172 "command_buffer/tests/gl_lose_context_chromium_unittest.cc", 172 "command_buffer/tests/gl_lose_context_chromium_unittest.cc",
173 "command_buffer/tests/gl_manager.cc", 173 "command_buffer/tests/gl_manager.cc",
174 "command_buffer/tests/gl_manager.h", 174 "command_buffer/tests/gl_manager.h",
175 "command_buffer/tests/gl_native_gmb_backbuffer_unittest.cc",
175 "command_buffer/tests/gl_pointcoord_unittest.cc", 176 "command_buffer/tests/gl_pointcoord_unittest.cc",
176 "command_buffer/tests/gl_program_unittest.cc", 177 "command_buffer/tests/gl_program_unittest.cc",
177 "command_buffer/tests/gl_query_unittest.cc", 178 "command_buffer/tests/gl_query_unittest.cc",
178 "command_buffer/tests/gl_readback_unittest.cc", 179 "command_buffer/tests/gl_readback_unittest.cc",
179 "command_buffer/tests/gl_request_extension_unittest.cc", 180 "command_buffer/tests/gl_request_extension_unittest.cc",
180 "command_buffer/tests/gl_shared_resources_unittest.cc", 181 "command_buffer/tests/gl_shared_resources_unittest.cc",
181 "command_buffer/tests/gl_stream_draw_unittest.cc", 182 "command_buffer/tests/gl_stream_draw_unittest.cc",
182 "command_buffer/tests/gl_test_utils.cc", 183 "command_buffer/tests/gl_test_utils.cc",
183 "command_buffer/tests/gl_test_utils.h", 184 "command_buffer/tests/gl_test_utils.h",
184 "command_buffer/tests/gl_tests_main.cc", 185 "command_buffer/tests/gl_tests_main.cc",
185 "command_buffer/tests/gl_texture_mailbox_unittest.cc", 186 "command_buffer/tests/gl_texture_mailbox_unittest.cc",
186 "command_buffer/tests/gl_texture_storage_unittest.cc", 187 "command_buffer/tests/gl_texture_storage_unittest.cc",
187 "command_buffer/tests/gl_unittest.cc", 188 "command_buffer/tests/gl_unittest.cc",
188 "command_buffer/tests/gl_unittests_android.cc", 189 "command_buffer/tests/gl_unittests_android.cc",
189 "command_buffer/tests/gl_virtual_contexts_unittest.cc", 190 "command_buffer/tests/gl_virtual_contexts_unittest.cc",
190 "command_buffer/tests/occlusion_query_unittest.cc", 191 "command_buffer/tests/occlusion_query_unittest.cc",
192 "command_buffer/tests/texture_image_factory.cc",
193 "command_buffer/tests/texture_image_factory.h",
191 "ipc/client/gpu_context_tests.h", 194 "ipc/client/gpu_context_tests.h",
192 "ipc/client/gpu_in_process_context_tests.cc", 195 "ipc/client/gpu_in_process_context_tests.cc",
193 ] 196 ]
194 197
195 defines = [ "GL_GLEXT_PROTOTYPES" ] 198 defines = [ "GL_GLEXT_PROTOTYPES" ]
196 199
197 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 200 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
198 201
199 deps = [ 202 deps = [
200 ":gpu", 203 ":gpu",
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 "//testing/gtest", 398 "//testing/gtest",
396 "//testing/perf", 399 "//testing/perf",
397 "//ui/gfx/geometry", 400 "//ui/gfx/geometry",
398 "//ui/gl", 401 "//ui/gl",
399 "//ui/gl/init", 402 "//ui/gl/init",
400 ] 403 ]
401 404
402 # This target should not require the Chrome executable to run. 405 # This target should not require the Chrome executable to run.
403 assert_no_deps = [ "//chrome" ] 406 assert_no_deps = [ "//chrome" ]
404 } 407 }
OLDNEW
« no previous file with comments | « components/mus/gles2/command_buffer_driver.cc ('k') | gpu/command_buffer/common/gles2_cmd_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698