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

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: add back jpeg_decode_accelerator.cc 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
« no previous file with comments | « content/common/gpu/media/vaapi_jpeg_decode_accelerator.cc ('k') | media/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 'common/gpu/image_transport_surface_calayer_mac.mm', 331 'common/gpu/image_transport_surface_calayer_mac.mm',
332 'common/gpu/image_transport_surface_fbo_mac.h', 332 'common/gpu/image_transport_surface_fbo_mac.h',
333 'common/gpu/image_transport_surface_fbo_mac.mm', 333 'common/gpu/image_transport_surface_fbo_mac.mm',
334 'common/gpu/image_transport_surface_iosurface_mac.cc', 334 'common/gpu/image_transport_surface_iosurface_mac.cc',
335 'common/gpu/image_transport_surface_iosurface_mac.h', 335 'common/gpu/image_transport_surface_iosurface_mac.h',
336 'common/gpu/image_transport_surface_linux.cc', 336 'common/gpu/image_transport_surface_linux.cc',
337 'common/gpu/image_transport_surface_mac.mm', 337 'common/gpu/image_transport_surface_mac.mm',
338 'common/gpu/image_transport_surface_win.cc', 338 'common/gpu/image_transport_surface_win.cc',
339 'common/gpu/media/fake_video_decode_accelerator.cc', 339 'common/gpu/media/fake_video_decode_accelerator.cc',
340 'common/gpu/media/fake_video_decode_accelerator.h', 340 'common/gpu/media/fake_video_decode_accelerator.h',
341 'common/gpu/media/gpu_jpeg_decode_accelerator.cc',
342 'common/gpu/media/gpu_jpeg_decode_accelerator.h',
341 'common/gpu/media/gpu_video_accelerator_util.cc', 343 'common/gpu/media/gpu_video_accelerator_util.cc',
342 'common/gpu/media/gpu_video_accelerator_util.h', 344 'common/gpu/media/gpu_video_accelerator_util.h',
343 'common/gpu/media/gpu_video_decode_accelerator.cc', 345 'common/gpu/media/gpu_video_decode_accelerator.cc',
344 'common/gpu/media/gpu_video_decode_accelerator.h', 346 'common/gpu/media/gpu_video_decode_accelerator.h',
345 'common/gpu/media/gpu_video_encode_accelerator.cc', 347 'common/gpu/media/gpu_video_encode_accelerator.cc',
346 'common/gpu/media/gpu_video_encode_accelerator.h', 348 'common/gpu/media/gpu_video_encode_accelerator.h',
347 'common/gpu/null_transport_surface.cc', 349 'common/gpu/null_transport_surface.cc',
348 'common/gpu/null_transport_surface.h', 350 'common/gpu/null_transport_surface.h',
349 'common/gpu/stream_texture_android.cc', 351 'common/gpu/stream_texture_android.cc',
350 'common/gpu/stream_texture_android.h', 352 'common/gpu/stream_texture_android.h',
(...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after
881 'common/gpu/media/tegra_v4l2_device.h', 883 'common/gpu/media/tegra_v4l2_device.h',
882 ], 884 ],
883 }], 885 }],
884 ['target_arch != "arm" and chromeos == 1', { 886 ['target_arch != "arm" and chromeos == 1', {
885 'dependencies': [ 887 'dependencies': [
886 '../media/media.gyp:media', 888 '../media/media.gyp:media',
887 '../third_party/libyuv/libyuv.gyp:libyuv', 889 '../third_party/libyuv/libyuv.gyp:libyuv',
888 ], 890 ],
889 'sources': [ 891 'sources': [
890 'common/gpu/media/va_surface.h', 892 'common/gpu/media/va_surface.h',
893 'common/gpu/media/vaapi_jpeg_decode_accelerator.cc',
894 'common/gpu/media/vaapi_jpeg_decode_accelerator.h',
891 'common/gpu/media/vaapi_jpeg_decoder.cc', 895 'common/gpu/media/vaapi_jpeg_decoder.cc',
892 'common/gpu/media/vaapi_jpeg_decoder.h', 896 'common/gpu/media/vaapi_jpeg_decoder.h',
893 'common/gpu/media/vaapi_picture.cc', 897 'common/gpu/media/vaapi_picture.cc',
894 'common/gpu/media/vaapi_picture.h', 898 'common/gpu/media/vaapi_picture.h',
895 'common/gpu/media/vaapi_video_decode_accelerator.cc', 899 'common/gpu/media/vaapi_video_decode_accelerator.cc',
896 'common/gpu/media/vaapi_video_decode_accelerator.h', 900 'common/gpu/media/vaapi_video_decode_accelerator.h',
897 'common/gpu/media/vaapi_video_encode_accelerator.cc', 901 'common/gpu/media/vaapi_video_encode_accelerator.cc',
898 'common/gpu/media/vaapi_video_encode_accelerator.h', 902 'common/gpu/media/vaapi_video_encode_accelerator.h',
899 'common/gpu/media/vaapi_wrapper.cc', 903 'common/gpu/media/vaapi_wrapper.cc',
900 'common/gpu/media/vaapi_wrapper.h', 904 'common/gpu/media/vaapi_wrapper.h',
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
1061 'common/gpu/client/gpu_memory_buffer_impl_ozone.cc', 1065 'common/gpu/client/gpu_memory_buffer_impl_ozone.cc',
1062 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc', 1066 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc',
1063 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.h', 1067 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.h',
1064 'common/gpu/gpu_memory_buffer_factory_ozone.cc', 1068 'common/gpu/gpu_memory_buffer_factory_ozone.cc',
1065 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.cc', 1069 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.cc',
1066 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.h', 1070 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.h',
1067 ], 1071 ],
1068 }], 1072 }],
1069 ], 1073 ],
1070 } 1074 }
OLDNEW
« no previous file with comments | « content/common/gpu/media/vaapi_jpeg_decode_accelerator.cc ('k') | media/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698