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

Side by Side Diff: content/content_common.gypi

Issue 833063003: Add accelerated video decoder interface, VP8 and H.264 implementations and hook up to V4L2SVDA. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 814 matching lines...) Expand 10 before | Expand all | Expand 10 after
825 'common/gpu/media/v4l2_video_device.h', 825 'common/gpu/media/v4l2_video_device.h',
826 'common/gpu/media/v4l2_video_encode_accelerator.cc', 826 'common/gpu/media/v4l2_video_encode_accelerator.cc',
827 'common/gpu/media/v4l2_video_encode_accelerator.h', 827 'common/gpu/media/v4l2_video_encode_accelerator.h',
828 ], 828 ],
829 'include_dirs': [ 829 'include_dirs': [
830 '<(DEPTH)/third_party/khronos', 830 '<(DEPTH)/third_party/khronos',
831 ], 831 ],
832 'conditions': [ 832 'conditions': [
833 ['target_arch == "arm"', { 833 ['target_arch == "arm"', {
834 'sources': [ 834 'sources': [
835 'common/gpu/media/accelerated_video_decoder.h',
836 'common/gpu/media/h264_decoder.cc',
837 'common/gpu/media/h264_decoder.h',
838 'common/gpu/media/h264_dpb.cc',
839 'common/gpu/media/h264_dpb.h',
835 'common/gpu/media/tegra_v4l2_video_device.cc', 840 'common/gpu/media/tegra_v4l2_video_device.cc',
836 'common/gpu/media/tegra_v4l2_video_device.h', 841 'common/gpu/media/tegra_v4l2_video_device.h',
842 'common/gpu/media/v4l2_slice_video_decode_accelerator.cc',
843 'common/gpu/media/v4l2_slice_video_decode_accelerator.h',
844 'common/gpu/media/vp8_picture.cc',
kcwu 2015/01/13 12:09:40 sort
845 'common/gpu/media/vp8_picture.h',
846 'common/gpu/media/vp8_decoder.cc',
847 'common/gpu/media/vp8_decoder.h',
837 ], 848 ],
838 }], 849 }],
839 ], 850 ],
840 }], 851 }],
841 ['target_arch != "arm" and chromeos == 1', { 852 ['target_arch != "arm" and chromeos == 1', {
842 'dependencies': [ 853 'dependencies': [
843 '../media/media.gyp:media', 854 '../media/media.gyp:media',
844 '../third_party/libyuv/libyuv.gyp:libyuv', 855 '../third_party/libyuv/libyuv.gyp:libyuv',
845 ], 856 ],
846 'sources': [ 857 'sources': [
847 'common/gpu/media/h264_dpb.cc',
848 'common/gpu/media/h264_dpb.h',
849 'common/gpu/media/va_surface.h', 858 'common/gpu/media/va_surface.h',
850 'common/gpu/media/vaapi_h264_decoder.cc', 859 'common/gpu/media/vaapi_h264_decoder.cc',
851 'common/gpu/media/vaapi_h264_decoder.h', 860 'common/gpu/media/vaapi_h264_decoder.h',
861 'common/gpu/media/vaapi_h264_dpb.cc',
862 'common/gpu/media/vaapi_h264_dpb.h',
852 'common/gpu/media/vaapi_picture.cc', 863 'common/gpu/media/vaapi_picture.cc',
853 'common/gpu/media/vaapi_picture.h', 864 'common/gpu/media/vaapi_picture.h',
854 'common/gpu/media/vaapi_video_decode_accelerator.cc', 865 'common/gpu/media/vaapi_video_decode_accelerator.cc',
855 'common/gpu/media/vaapi_video_decode_accelerator.h', 866 'common/gpu/media/vaapi_video_decode_accelerator.h',
856 'common/gpu/media/vaapi_video_encode_accelerator.cc', 867 'common/gpu/media/vaapi_video_encode_accelerator.cc',
857 'common/gpu/media/vaapi_video_encode_accelerator.h', 868 'common/gpu/media/vaapi_video_encode_accelerator.h',
858 'common/gpu/media/vaapi_wrapper.cc', 869 'common/gpu/media/vaapi_wrapper.cc',
859 'common/gpu/media/vaapi_wrapper.h', 870 'common/gpu/media/vaapi_wrapper.h',
860 ], 871 ],
861 'conditions': [ 872 'conditions': [
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
1017 'common/gpu/client/gpu_memory_buffer_impl_ozone.cc', 1028 'common/gpu/client/gpu_memory_buffer_impl_ozone.cc',
1018 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc', 1029 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc',
1019 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.h', 1030 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.h',
1020 'common/gpu/gpu_memory_buffer_factory_ozone.cc', 1031 'common/gpu/gpu_memory_buffer_factory_ozone.cc',
1021 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.cc', 1032 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.cc',
1022 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.h', 1033 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.h',
1023 ], 1034 ],
1024 }], 1035 }],
1025 ], 1036 ],
1026 } 1037 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698