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

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: Fix whitespace 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 798 matching lines...) Expand 10 before | Expand all | Expand 10 after
809 '-e', '<(extra_header)', 809 '-e', '<(extra_header)',
810 '-s', '<(stubs_filename_root)', 810 '-s', '<(stubs_filename_root)',
811 '-p', '<(project_path)', 811 '-p', '<(project_path)',
812 '<@(_inputs)', 812 '<@(_inputs)',
813 ], 813 ],
814 'process_outputs_as_sources': 1, 814 'process_outputs_as_sources': 1,
815 'message': 'Generating libv4l2 stubs for dynamic loading', 815 'message': 'Generating libv4l2 stubs for dynamic loading',
816 }, 816 },
817 ], 817 ],
818 }], 818 }],
819 ['chromeos==1', {
820 'sources': [
821 'common/gpu/media/accelerated_video_decoder.h',
822 'common/gpu/media/h264_decoder.cc',
823 'common/gpu/media/h264_decoder.h',
824 'common/gpu/media/h264_dpb.cc',
825 'common/gpu/media/h264_dpb.h',
826 ],
827 }],
819 ['chromeos==1 and use_v4l2_codec==1', { 828 ['chromeos==1 and use_v4l2_codec==1', {
820 'direct_dependent_settings': { 829 'direct_dependent_settings': {
821 'defines': [ 830 'defines': [
822 'USE_V4L2_CODEC' 831 'USE_V4L2_CODEC'
823 ], 832 ],
824 }, 833 },
825 'defines': [ 834 'defines': [
826 'USE_V4L2_CODEC' 835 'USE_V4L2_CODEC'
827 ], 836 ],
828 'dependencies': [ 837 'dependencies': [
829 '../media/media.gyp:media', 838 '../media/media.gyp:media',
830 ], 839 ],
831 'sources': [ 840 'sources': [
832 'common/gpu/media/accelerated_video_decoder.h',
833 'common/gpu/media/generic_v4l2_device.cc', 841 'common/gpu/media/generic_v4l2_device.cc',
834 'common/gpu/media/generic_v4l2_device.h', 842 'common/gpu/media/generic_v4l2_device.h',
835 'common/gpu/media/h264_decoder.cc',
836 'common/gpu/media/h264_decoder.h',
837 'common/gpu/media/h264_dpb.cc',
838 'common/gpu/media/h264_dpb.h',
839 'common/gpu/media/v4l2_device.cc', 843 'common/gpu/media/v4l2_device.cc',
840 'common/gpu/media/v4l2_device.h', 844 'common/gpu/media/v4l2_device.h',
841 'common/gpu/media/v4l2_image_processor.cc', 845 'common/gpu/media/v4l2_image_processor.cc',
842 'common/gpu/media/v4l2_image_processor.h', 846 'common/gpu/media/v4l2_image_processor.h',
843 'common/gpu/media/v4l2_slice_video_decode_accelerator.cc', 847 'common/gpu/media/v4l2_slice_video_decode_accelerator.cc',
844 'common/gpu/media/v4l2_slice_video_decode_accelerator.h', 848 'common/gpu/media/v4l2_slice_video_decode_accelerator.h',
845 'common/gpu/media/v4l2_video_decode_accelerator.cc', 849 'common/gpu/media/v4l2_video_decode_accelerator.cc',
846 'common/gpu/media/v4l2_video_decode_accelerator.h', 850 'common/gpu/media/v4l2_video_decode_accelerator.h',
847 'common/gpu/media/v4l2_video_encode_accelerator.cc', 851 'common/gpu/media/v4l2_video_encode_accelerator.cc',
848 'common/gpu/media/v4l2_video_encode_accelerator.h', 852 'common/gpu/media/v4l2_video_encode_accelerator.h',
(...skipping 12 matching lines...) Expand all
861 'common/gpu/media/tegra_v4l2_device.h', 865 'common/gpu/media/tegra_v4l2_device.h',
862 ], 866 ],
863 }], 867 }],
864 ['target_arch != "arm" and chromeos == 1', { 868 ['target_arch != "arm" and chromeos == 1', {
865 'dependencies': [ 869 'dependencies': [
866 '../media/media.gyp:media', 870 '../media/media.gyp:media',
867 '../third_party/libyuv/libyuv.gyp:libyuv', 871 '../third_party/libyuv/libyuv.gyp:libyuv',
868 ], 872 ],
869 'sources': [ 873 'sources': [
870 'common/gpu/media/va_surface.h', 874 'common/gpu/media/va_surface.h',
871 'common/gpu/media/vaapi_h264_decoder.cc',
872 'common/gpu/media/vaapi_h264_decoder.h',
873 'common/gpu/media/vaapi_h264_dpb.cc',
874 'common/gpu/media/vaapi_h264_dpb.h',
875 'common/gpu/media/vaapi_jpeg_decoder.cc', 875 'common/gpu/media/vaapi_jpeg_decoder.cc',
876 'common/gpu/media/vaapi_jpeg_decoder.h', 876 'common/gpu/media/vaapi_jpeg_decoder.h',
877 'common/gpu/media/vaapi_picture.cc', 877 'common/gpu/media/vaapi_picture.cc',
878 'common/gpu/media/vaapi_picture.h', 878 'common/gpu/media/vaapi_picture.h',
879 'common/gpu/media/vaapi_video_decode_accelerator.cc', 879 'common/gpu/media/vaapi_video_decode_accelerator.cc',
880 'common/gpu/media/vaapi_video_decode_accelerator.h', 880 'common/gpu/media/vaapi_video_decode_accelerator.h',
881 'common/gpu/media/vaapi_video_encode_accelerator.cc', 881 'common/gpu/media/vaapi_video_encode_accelerator.cc',
882 'common/gpu/media/vaapi_video_encode_accelerator.h', 882 'common/gpu/media/vaapi_video_encode_accelerator.h',
883 'common/gpu/media/vaapi_wrapper.cc', 883 'common/gpu/media/vaapi_wrapper.cc',
884 'common/gpu/media/vaapi_wrapper.h', 884 'common/gpu/media/vaapi_wrapper.h',
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
1045 'common/gpu/client/gpu_memory_buffer_impl_ozone.cc', 1045 'common/gpu/client/gpu_memory_buffer_impl_ozone.cc',
1046 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc', 1046 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc',
1047 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.h', 1047 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.h',
1048 'common/gpu/gpu_memory_buffer_factory_ozone.cc', 1048 'common/gpu/gpu_memory_buffer_factory_ozone.cc',
1049 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.cc', 1049 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.cc',
1050 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.h', 1050 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.h',
1051 ], 1051 ],
1052 }], 1052 }],
1053 ], 1053 ],
1054 } 1054 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698