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

Side by Side Diff: content/content_common.gypi

Issue 1124423008: MJPEG acceleration for video capture using VAAPI, the GPU and IPC part (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mjpeg-1-media
Patch Set: split out host part Created 5 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
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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 'common/gpu/image_transport_surface_calayer_mac.mm', 329 'common/gpu/image_transport_surface_calayer_mac.mm',
330 'common/gpu/image_transport_surface_fbo_mac.h', 330 'common/gpu/image_transport_surface_fbo_mac.h',
331 'common/gpu/image_transport_surface_fbo_mac.mm', 331 'common/gpu/image_transport_surface_fbo_mac.mm',
332 'common/gpu/image_transport_surface_iosurface_mac.cc', 332 'common/gpu/image_transport_surface_iosurface_mac.cc',
333 'common/gpu/image_transport_surface_iosurface_mac.h', 333 'common/gpu/image_transport_surface_iosurface_mac.h',
334 'common/gpu/image_transport_surface_linux.cc', 334 'common/gpu/image_transport_surface_linux.cc',
335 'common/gpu/image_transport_surface_mac.mm', 335 'common/gpu/image_transport_surface_mac.mm',
336 'common/gpu/image_transport_surface_win.cc', 336 'common/gpu/image_transport_surface_win.cc',
337 'common/gpu/media/fake_video_decode_accelerator.cc', 337 'common/gpu/media/fake_video_decode_accelerator.cc',
338 'common/gpu/media/fake_video_decode_accelerator.h', 338 'common/gpu/media/fake_video_decode_accelerator.h',
339 'common/gpu/media/gpu_jpeg_decode_accelerator.cc',
340 'common/gpu/media/gpu_jpeg_decode_accelerator.h',
339 'common/gpu/media/gpu_video_accelerator_util.cc', 341 'common/gpu/media/gpu_video_accelerator_util.cc',
340 'common/gpu/media/gpu_video_accelerator_util.h', 342 'common/gpu/media/gpu_video_accelerator_util.h',
341 'common/gpu/media/gpu_video_decode_accelerator.cc', 343 'common/gpu/media/gpu_video_decode_accelerator.cc',
342 'common/gpu/media/gpu_video_decode_accelerator.h', 344 'common/gpu/media/gpu_video_decode_accelerator.h',
343 'common/gpu/media/gpu_video_encode_accelerator.cc', 345 'common/gpu/media/gpu_video_encode_accelerator.cc',
344 'common/gpu/media/gpu_video_encode_accelerator.h', 346 'common/gpu/media/gpu_video_encode_accelerator.h',
345 'common/gpu/null_transport_surface.cc', 347 'common/gpu/null_transport_surface.cc',
346 'common/gpu/null_transport_surface.h', 348 'common/gpu/null_transport_surface.h',
347 'common/gpu/stream_texture_android.cc', 349 'common/gpu/stream_texture_android.cc',
348 'common/gpu/stream_texture_android.h', 350 'common/gpu/stream_texture_android.h',
(...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after
879 'common/gpu/media/tegra_v4l2_device.h', 881 'common/gpu/media/tegra_v4l2_device.h',
880 ], 882 ],
881 }], 883 }],
882 ['target_arch != "arm" and chromeos == 1', { 884 ['target_arch != "arm" and chromeos == 1', {
883 'dependencies': [ 885 'dependencies': [
884 '../media/media.gyp:media', 886 '../media/media.gyp:media',
885 '../third_party/libyuv/libyuv.gyp:libyuv', 887 '../third_party/libyuv/libyuv.gyp:libyuv',
886 ], 888 ],
887 'sources': [ 889 'sources': [
888 'common/gpu/media/va_surface.h', 890 'common/gpu/media/va_surface.h',
891 'common/gpu/media/vaapi_jpeg_decode_accelerator.cc',
892 'common/gpu/media/vaapi_jpeg_decode_accelerator.h',
889 'common/gpu/media/vaapi_jpeg_decoder.cc', 893 'common/gpu/media/vaapi_jpeg_decoder.cc',
890 'common/gpu/media/vaapi_jpeg_decoder.h', 894 'common/gpu/media/vaapi_jpeg_decoder.h',
891 'common/gpu/media/vaapi_picture.cc', 895 'common/gpu/media/vaapi_picture.cc',
892 'common/gpu/media/vaapi_picture.h', 896 'common/gpu/media/vaapi_picture.h',
893 'common/gpu/media/vaapi_video_decode_accelerator.cc', 897 'common/gpu/media/vaapi_video_decode_accelerator.cc',
894 'common/gpu/media/vaapi_video_decode_accelerator.h', 898 'common/gpu/media/vaapi_video_decode_accelerator.h',
895 'common/gpu/media/vaapi_video_encode_accelerator.cc', 899 'common/gpu/media/vaapi_video_encode_accelerator.cc',
896 'common/gpu/media/vaapi_video_encode_accelerator.h', 900 'common/gpu/media/vaapi_video_encode_accelerator.h',
897 'common/gpu/media/vaapi_wrapper.cc', 901 'common/gpu/media/vaapi_wrapper.cc',
898 'common/gpu/media/vaapi_wrapper.h', 902 'common/gpu/media/vaapi_wrapper.h',
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
1059 'common/gpu/client/gpu_memory_buffer_impl_ozone.cc', 1063 'common/gpu/client/gpu_memory_buffer_impl_ozone.cc',
1060 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc', 1064 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc',
1061 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.h', 1065 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.h',
1062 'common/gpu/gpu_memory_buffer_factory_ozone.cc', 1066 'common/gpu/gpu_memory_buffer_factory_ozone.cc',
1063 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.cc', 1067 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.cc',
1064 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.h', 1068 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.h',
1065 ], 1069 ],
1066 }], 1070 }],
1067 ], 1071 ],
1068 } 1072 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698