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

Side by Side Diff: content/content_common.gypi

Issue 882123004: Renamed v4l2_video_device.*->v4l2_device.* and generic_v4l2_video_device.*->generic_v4l2_device.* a… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changed the include to updated file name. Created 5 years, 9 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/video_decode_accelerator_unittest.cc ('k') | no next file » | 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 806 matching lines...) Expand 10 before | Expand all | Expand 10 after
817 ], 817 ],
818 }, 818 },
819 'defines': [ 819 'defines': [
820 'USE_V4L2_CODEC' 820 'USE_V4L2_CODEC'
821 ], 821 ],
822 'dependencies': [ 822 'dependencies': [
823 '../media/media.gyp:media', 823 '../media/media.gyp:media',
824 ], 824 ],
825 'sources': [ 825 'sources': [
826 'common/gpu/media/accelerated_video_decoder.h', 826 'common/gpu/media/accelerated_video_decoder.h',
827 'common/gpu/media/generic_v4l2_video_device.cc', 827 'common/gpu/media/generic_v4l2_device.cc',
828 'common/gpu/media/generic_v4l2_video_device.h', 828 'common/gpu/media/generic_v4l2_device.h',
829 'common/gpu/media/h264_decoder.cc', 829 'common/gpu/media/h264_decoder.cc',
830 'common/gpu/media/h264_decoder.h', 830 'common/gpu/media/h264_decoder.h',
831 'common/gpu/media/h264_dpb.cc', 831 'common/gpu/media/h264_dpb.cc',
832 'common/gpu/media/h264_dpb.h', 832 'common/gpu/media/h264_dpb.h',
833 'common/gpu/media/v4l2_device.cc',
834 'common/gpu/media/v4l2_device.h',
833 'common/gpu/media/v4l2_image_processor.cc', 835 'common/gpu/media/v4l2_image_processor.cc',
834 'common/gpu/media/v4l2_image_processor.h', 836 'common/gpu/media/v4l2_image_processor.h',
835 'common/gpu/media/v4l2_slice_video_decode_accelerator.cc', 837 'common/gpu/media/v4l2_slice_video_decode_accelerator.cc',
836 'common/gpu/media/v4l2_slice_video_decode_accelerator.h', 838 'common/gpu/media/v4l2_slice_video_decode_accelerator.h',
837 'common/gpu/media/v4l2_video_decode_accelerator.cc', 839 'common/gpu/media/v4l2_video_decode_accelerator.cc',
838 'common/gpu/media/v4l2_video_decode_accelerator.h', 840 'common/gpu/media/v4l2_video_decode_accelerator.h',
839 'common/gpu/media/v4l2_video_device.cc',
840 'common/gpu/media/v4l2_video_device.h',
841 'common/gpu/media/v4l2_video_encode_accelerator.cc', 841 'common/gpu/media/v4l2_video_encode_accelerator.cc',
842 'common/gpu/media/v4l2_video_encode_accelerator.h', 842 'common/gpu/media/v4l2_video_encode_accelerator.h',
843 'common/gpu/media/vp8_decoder.cc', 843 'common/gpu/media/vp8_decoder.cc',
844 'common/gpu/media/vp8_decoder.h', 844 'common/gpu/media/vp8_decoder.h',
845 'common/gpu/media/vp8_picture.cc', 845 'common/gpu/media/vp8_picture.cc',
846 'common/gpu/media/vp8_picture.h', 846 'common/gpu/media/vp8_picture.h',
847 ], 847 ],
848 'include_dirs': [ 848 'include_dirs': [
849 '<(DEPTH)/third_party/khronos', 849 '<(DEPTH)/third_party/khronos',
850 ], 850 ],
851 }], 851 }],
852 ['target_arch == "arm" and chromeos == 1', { 852 ['target_arch == "arm" and chromeos == 1', {
853 'sources': [ 853 'sources': [
854 'common/gpu/media/tegra_v4l2_video_device.cc', 854 'common/gpu/media/tegra_v4l2_device.cc',
855 'common/gpu/media/tegra_v4l2_video_device.h', 855 'common/gpu/media/tegra_v4l2_device.h',
856 ], 856 ],
857 }], 857 }],
858 ['target_arch != "arm" and chromeos == 1', { 858 ['target_arch != "arm" and chromeos == 1', {
859 'dependencies': [ 859 'dependencies': [
860 '../media/media.gyp:media', 860 '../media/media.gyp:media',
861 '../third_party/libyuv/libyuv.gyp:libyuv', 861 '../third_party/libyuv/libyuv.gyp:libyuv',
862 ], 862 ],
863 'sources': [ 863 'sources': [
864 'common/gpu/media/va_surface.h', 864 'common/gpu/media/va_surface.h',
865 'common/gpu/media/vaapi_h264_decoder.cc', 865 'common/gpu/media/vaapi_h264_decoder.cc',
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
1037 'common/gpu/client/gpu_memory_buffer_impl_ozone.cc', 1037 'common/gpu/client/gpu_memory_buffer_impl_ozone.cc',
1038 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc', 1038 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc',
1039 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.h', 1039 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.h',
1040 'common/gpu/gpu_memory_buffer_factory_ozone.cc', 1040 'common/gpu/gpu_memory_buffer_factory_ozone.cc',
1041 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.cc', 1041 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.cc',
1042 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.h', 1042 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.h',
1043 ], 1043 ],
1044 }], 1044 }],
1045 ], 1045 ],
1046 } 1046 }
OLDNEW
« no previous file with comments | « content/common/gpu/media/video_decode_accelerator_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698