OLD | NEW |
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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
244 'common/gpu/client/context_provider_command_buffer.cc', | 244 'common/gpu/client/context_provider_command_buffer.cc', |
245 'common/gpu/client/context_provider_command_buffer.h', | 245 'common/gpu/client/context_provider_command_buffer.h', |
246 'common/gpu/client/gl_helper.cc', | 246 'common/gpu/client/gl_helper.cc', |
247 'common/gpu/client/gl_helper.h', | 247 'common/gpu/client/gl_helper.h', |
248 'common/gpu/client/gl_helper_readback_support.cc', | 248 'common/gpu/client/gl_helper_readback_support.cc', |
249 'common/gpu/client/gl_helper_readback_support.h', | 249 'common/gpu/client/gl_helper_readback_support.h', |
250 'common/gpu/client/gl_helper_scaling.cc', | 250 'common/gpu/client/gl_helper_scaling.cc', |
251 'common/gpu/client/gl_helper_scaling.h', | 251 'common/gpu/client/gl_helper_scaling.h', |
252 'common/gpu/client/gpu_channel_host.cc', | 252 'common/gpu/client/gpu_channel_host.cc', |
253 'common/gpu/client/gpu_channel_host.h', | 253 'common/gpu/client/gpu_channel_host.h', |
| 254 'common/gpu/client/gpu_memory_buffer_factory_host.cc', |
254 'common/gpu/client/gpu_memory_buffer_factory_host.h', | 255 'common/gpu/client/gpu_memory_buffer_factory_host.h', |
255 'common/gpu/client/gpu_memory_buffer_impl.cc', | 256 'common/gpu/client/gpu_memory_buffer_impl.cc', |
256 'common/gpu/client/gpu_memory_buffer_impl.h', | 257 'common/gpu/client/gpu_memory_buffer_impl.h', |
257 'common/gpu/client/gpu_memory_buffer_impl_android.cc', | 258 'common/gpu/client/gpu_memory_buffer_impl_android.cc', |
258 'common/gpu/client/gpu_memory_buffer_impl_linux.cc', | 259 'common/gpu/client/gpu_memory_buffer_impl_linux.cc', |
259 'common/gpu/client/gpu_memory_buffer_impl_mac.cc', | 260 'common/gpu/client/gpu_memory_buffer_impl_mac.cc', |
| 261 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc', |
| 262 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.h', |
260 'common/gpu/client/gpu_memory_buffer_impl_shared_memory.cc', | 263 'common/gpu/client/gpu_memory_buffer_impl_shared_memory.cc', |
261 'common/gpu/client/gpu_memory_buffer_impl_shared_memory.h', | 264 'common/gpu/client/gpu_memory_buffer_impl_shared_memory.h', |
262 'common/gpu/client/gpu_memory_buffer_impl_win.cc', | 265 'common/gpu/client/gpu_memory_buffer_impl_win.cc', |
263 'common/gpu/client/gpu_video_decode_accelerator_host.cc', | 266 'common/gpu/client/gpu_video_decode_accelerator_host.cc', |
264 'common/gpu/client/gpu_video_decode_accelerator_host.h', | 267 'common/gpu/client/gpu_video_decode_accelerator_host.h', |
265 'common/gpu/client/gpu_video_encode_accelerator_host.cc', | 268 'common/gpu/client/gpu_video_encode_accelerator_host.cc', |
266 'common/gpu/client/gpu_video_encode_accelerator_host.h', | 269 'common/gpu/client/gpu_video_encode_accelerator_host.h', |
267 'common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc', | 270 'common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc', |
268 'common/gpu/client/webgraphicscontext3d_command_buffer_impl.h', | 271 'common/gpu/client/webgraphicscontext3d_command_buffer_impl.h', |
269 'common/gpu/devtools_gpu_agent.cc', | 272 'common/gpu/devtools_gpu_agent.cc', |
(...skipping 614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
884 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h', | 887 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h', |
885 ], | 888 ], |
886 }, { | 889 }, { |
887 'defines': ['USE_SECCOMP_BPF'], | 890 'defines': ['USE_SECCOMP_BPF'], |
888 }], | 891 }], |
889 ['use_ozone==1', { | 892 ['use_ozone==1', { |
890 'dependencies': [ | 893 'dependencies': [ |
891 '../ui/ozone/ozone.gyp:ozone', | 894 '../ui/ozone/ozone.gyp:ozone', |
892 '../ui/ozone/gpu/ozone_gpu.gyp:ozone_gpu', | 895 '../ui/ozone/gpu/ozone_gpu.gyp:ozone_gpu', |
893 ], | 896 ], |
| 897 'sources': [ |
| 898 'common/gpu/client/gpu_memory_buffer_impl_ozone.cc', |
| 899 ], |
| 900 'sources!': [ |
| 901 'common/gpu/client/gpu_memory_buffer_impl_linux.cc', |
| 902 ], |
894 }], | 903 }], |
895 ], | 904 ], |
896 } | 905 } |
OLD | NEW |