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

Side by Side Diff: content/content_common.gypi

Issue 1040513003: VAVDA: Use the new, generic video decoder and accelerator infrastructure. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 8 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 802 matching lines...) Expand 10 before | Expand all | Expand 10 after
813 '-e', '<(extra_header)', 813 '-e', '<(extra_header)',
814 '-s', '<(stubs_filename_root)', 814 '-s', '<(stubs_filename_root)',
815 '-p', '<(project_path)', 815 '-p', '<(project_path)',
816 '<@(_inputs)', 816 '<@(_inputs)',
817 ], 817 ],
818 'process_outputs_as_sources': 1, 818 'process_outputs_as_sources': 1,
819 'message': 'Generating libv4l2 stubs for dynamic loading', 819 'message': 'Generating libv4l2 stubs for dynamic loading',
820 }, 820 },
821 ], 821 ],
822 }], 822 }],
823 ['chromeos==1', {
824 'sources': [
825 'common/gpu/media/accelerated_video_decoder.h',
826 'common/gpu/media/h264_decoder.cc',
827 'common/gpu/media/h264_decoder.h',
828 'common/gpu/media/h264_dpb.cc',
829 'common/gpu/media/h264_dpb.h',
830 ],
831 }],
823 ['chromeos==1 and use_v4l2_codec==1', { 832 ['chromeos==1 and use_v4l2_codec==1', {
824 'direct_dependent_settings': { 833 'direct_dependent_settings': {
825 'defines': [ 834 'defines': [
826 'USE_V4L2_CODEC' 835 'USE_V4L2_CODEC'
827 ], 836 ],
828 }, 837 },
829 'defines': [ 838 'defines': [
830 'USE_V4L2_CODEC' 839 'USE_V4L2_CODEC'
831 ], 840 ],
832 'dependencies': [ 841 'dependencies': [
833 '../media/media.gyp:media', 842 '../media/media.gyp:media',
834 ], 843 ],
835 'sources': [ 844 'sources': [
836 'common/gpu/media/accelerated_video_decoder.h',
837 'common/gpu/media/generic_v4l2_device.cc', 845 'common/gpu/media/generic_v4l2_device.cc',
838 'common/gpu/media/generic_v4l2_device.h', 846 'common/gpu/media/generic_v4l2_device.h',
839 'common/gpu/media/h264_decoder.cc',
840 'common/gpu/media/h264_decoder.h',
841 'common/gpu/media/h264_dpb.cc',
842 'common/gpu/media/h264_dpb.h',
843 'common/gpu/media/v4l2_device.cc', 847 'common/gpu/media/v4l2_device.cc',
844 'common/gpu/media/v4l2_device.h', 848 'common/gpu/media/v4l2_device.h',
845 'common/gpu/media/v4l2_image_processor.cc', 849 'common/gpu/media/v4l2_image_processor.cc',
846 'common/gpu/media/v4l2_image_processor.h', 850 'common/gpu/media/v4l2_image_processor.h',
847 'common/gpu/media/v4l2_slice_video_decode_accelerator.cc', 851 'common/gpu/media/v4l2_slice_video_decode_accelerator.cc',
848 'common/gpu/media/v4l2_slice_video_decode_accelerator.h', 852 'common/gpu/media/v4l2_slice_video_decode_accelerator.h',
849 'common/gpu/media/v4l2_video_decode_accelerator.cc', 853 'common/gpu/media/v4l2_video_decode_accelerator.cc',
850 'common/gpu/media/v4l2_video_decode_accelerator.h', 854 'common/gpu/media/v4l2_video_decode_accelerator.h',
851 'common/gpu/media/v4l2_video_encode_accelerator.cc', 855 'common/gpu/media/v4l2_video_encode_accelerator.cc',
852 'common/gpu/media/v4l2_video_encode_accelerator.h', 856 'common/gpu/media/v4l2_video_encode_accelerator.h',
(...skipping 12 matching lines...) Expand all
865 'common/gpu/media/tegra_v4l2_device.h', 869 'common/gpu/media/tegra_v4l2_device.h',
866 ], 870 ],
867 }], 871 }],
868 ['target_arch != "arm" and chromeos == 1', { 872 ['target_arch != "arm" and chromeos == 1', {
869 'dependencies': [ 873 'dependencies': [
870 '../media/media.gyp:media', 874 '../media/media.gyp:media',
871 '../third_party/libyuv/libyuv.gyp:libyuv', 875 '../third_party/libyuv/libyuv.gyp:libyuv',
872 ], 876 ],
873 'sources': [ 877 'sources': [
874 'common/gpu/media/va_surface.h', 878 'common/gpu/media/va_surface.h',
875 'common/gpu/media/vaapi_h264_decoder.cc',
876 'common/gpu/media/vaapi_h264_decoder.h',
877 'common/gpu/media/vaapi_h264_dpb.cc',
878 'common/gpu/media/vaapi_h264_dpb.h',
879 'common/gpu/media/vaapi_jpeg_decoder.cc', 879 'common/gpu/media/vaapi_jpeg_decoder.cc',
880 'common/gpu/media/vaapi_jpeg_decoder.h', 880 'common/gpu/media/vaapi_jpeg_decoder.h',
881 'common/gpu/media/vaapi_picture.cc', 881 'common/gpu/media/vaapi_picture.cc',
882 'common/gpu/media/vaapi_picture.h', 882 'common/gpu/media/vaapi_picture.h',
883 'common/gpu/media/vaapi_video_decode_accelerator.cc', 883 'common/gpu/media/vaapi_video_decode_accelerator.cc',
884 'common/gpu/media/vaapi_video_decode_accelerator.h', 884 'common/gpu/media/vaapi_video_decode_accelerator.h',
885 'common/gpu/media/vaapi_video_encode_accelerator.cc', 885 'common/gpu/media/vaapi_video_encode_accelerator.cc',
886 'common/gpu/media/vaapi_video_encode_accelerator.h', 886 'common/gpu/media/vaapi_video_encode_accelerator.h',
887 'common/gpu/media/vaapi_wrapper.cc', 887 'common/gpu/media/vaapi_wrapper.cc',
888 'common/gpu/media/vaapi_wrapper.h', 888 'common/gpu/media/vaapi_wrapper.h',
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
1049 'common/gpu/client/gpu_memory_buffer_impl_ozone.cc', 1049 'common/gpu/client/gpu_memory_buffer_impl_ozone.cc',
1050 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc', 1050 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc',
1051 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.h', 1051 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.h',
1052 'common/gpu/gpu_memory_buffer_factory_ozone.cc', 1052 'common/gpu/gpu_memory_buffer_factory_ozone.cc',
1053 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.cc', 1053 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.cc',
1054 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.h', 1054 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.h',
1055 ], 1055 ],
1056 }], 1056 }],
1057 ], 1057 ],
1058 } 1058 }
OLDNEW
« no previous file with comments | « content/common/gpu/media/vaapi_video_encode_accelerator.cc ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698