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

Side by Side Diff: content/content_common.gypi

Issue 331723003: gpu: Remove Create/DeleteImage IPC by adding an X11_PIXMAP_BUFFER GpuMemoryBuffer type. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add GpuMemoryBufferFactory interface Created 6 years, 6 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'dependencies': [ 6 'dependencies': [
7 '../base/base.gyp:base', 7 '../base/base.gyp:base',
8 '../components/tracing.gyp:tracing', 8 '../components/tracing.gyp:tracing',
9 '../gpu/command_buffer/command_buffer.gyp:gles2_utils', 9 '../gpu/command_buffer/command_buffer.gyp:gles2_utils',
10 '../net/net.gyp:net', 10 '../net/net.gyp:net',
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 'common/gpu/devtools_gpu_agent.h', 256 'common/gpu/devtools_gpu_agent.h',
257 'common/gpu/devtools_gpu_instrumentation.cc', 257 'common/gpu/devtools_gpu_instrumentation.cc',
258 'common/gpu/devtools_gpu_instrumentation.h', 258 'common/gpu/devtools_gpu_instrumentation.h',
259 'common/gpu/gpu_channel.cc', 259 'common/gpu/gpu_channel.cc',
260 'common/gpu/gpu_channel.h', 260 'common/gpu/gpu_channel.h',
261 'common/gpu/gpu_channel_manager.cc', 261 'common/gpu/gpu_channel_manager.cc',
262 'common/gpu/gpu_channel_manager.h', 262 'common/gpu/gpu_channel_manager.h',
263 'common/gpu/gpu_command_buffer_stub.cc', 263 'common/gpu/gpu_command_buffer_stub.cc',
264 'common/gpu/gpu_command_buffer_stub.h', 264 'common/gpu/gpu_command_buffer_stub.h',
265 'common/gpu/gpu_config.h', 265 'common/gpu/gpu_config.h',
266 'common/gpu/gpu_memory_buffer_factory.h',
267 'common/gpu/gpu_memory_buffer_factory_android.cc',
268 'common/gpu/gpu_memory_buffer_factory_mac.cc',
269 'common/gpu/gpu_memory_buffer_factory_ozone.cc',
270 'common/gpu/gpu_memory_buffer_factory_win.cc',
271 'common/gpu/gpu_memory_buffer_factory_x11.cc',
266 'common/gpu/gpu_memory_manager.cc', 272 'common/gpu/gpu_memory_manager.cc',
267 'common/gpu/gpu_memory_manager.h', 273 'common/gpu/gpu_memory_manager.h',
268 'common/gpu/gpu_memory_manager_client.cc', 274 'common/gpu/gpu_memory_manager_client.cc',
269 'common/gpu/gpu_memory_manager_client.h', 275 'common/gpu/gpu_memory_manager_client.h',
270 'common/gpu/gpu_memory_tracking.cc', 276 'common/gpu/gpu_memory_tracking.cc',
271 'common/gpu/gpu_memory_tracking.h', 277 'common/gpu/gpu_memory_tracking.h',
272 'common/gpu/gpu_memory_uma_stats.h', 278 'common/gpu/gpu_memory_uma_stats.h',
273 'common/gpu/gpu_messages.h', 279 'common/gpu/gpu_messages.h',
274 'common/gpu/gpu_process_launch_causes.h', 280 'common/gpu/gpu_process_launch_causes.h',
275 'common/gpu/gpu_surface_lookup.cc', 281 'common/gpu/gpu_surface_lookup.cc',
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after
601 'common/font_list_ozone.cc', 607 'common/font_list_ozone.cc',
602 ], 608 ],
603 }], 609 }],
604 ['use_x11 == 1', { 610 ['use_x11 == 1', {
605 'include_dirs': [ 611 'include_dirs': [
606 '<(DEPTH)/third_party/khronos', 612 '<(DEPTH)/third_party/khronos',
607 ], 613 ],
608 'dependencies': [ 614 'dependencies': [
609 '<(DEPTH)/build/linux/system.gyp:xcomposite', 615 '<(DEPTH)/build/linux/system.gyp:xcomposite',
610 ], 616 ],
617 'sources': [
618 'common/gpu/gpu_memory_buffer_factory_x11_pixmap.cc',
619 'common/gpu/gpu_memory_buffer_factory_x11_pixmap.h',
620 ],
611 }], 621 }],
612 ['use_x11 == 1 and (target_arch != "arm" or chromeos == 0)', { 622 ['use_x11 == 1 and (target_arch != "arm" or chromeos == 0)', {
613 'sources': [ 623 'sources': [
614 'common/gpu/x_util.cc', 624 'common/gpu/x_util.cc',
615 'common/gpu/x_util.h', 625 'common/gpu/x_util.h',
616 ], 626 ],
617 }], 627 }],
618 ['enable_plugins==1', { 628 ['enable_plugins==1', {
619 'dependencies': [ 629 'dependencies': [
620 '../ppapi/ppapi_internal.gyp:ppapi_shared', 630 '../ppapi/ppapi_internal.gyp:ppapi_shared',
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
795 'common/sandbox_linux/bpf_renderer_policy_linux.cc', 805 'common/sandbox_linux/bpf_renderer_policy_linux.cc',
796 'common/sandbox_linux/bpf_renderer_policy_linux.h', 806 'common/sandbox_linux/bpf_renderer_policy_linux.h',
797 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc', 807 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc',
798 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h', 808 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h',
799 ], 809 ],
800 }, { 810 }, {
801 'defines': ['USE_SECCOMP_BPF'], 811 'defines': ['USE_SECCOMP_BPF'],
802 }], 812 }],
803 ], 813 ],
804 } 814 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698