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

Side by Side Diff: content/content_common.gypi

Issue 1872393002: Enable VAAPI accelerated decode on Linux Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add missing JPEG change Created 4 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
« no previous file with comments | « content/common/gpu/media/jpeg_decode_accelerator_unittest.cc ('k') | content/content_gpu.gypi » ('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 '../cc/cc.gyp:cc', 8 '../cc/cc.gyp:cc',
9 '../components/tracing.gyp:tracing', 9 '../components/tracing.gyp:tracing',
10 '../device/bluetooth/bluetooth.gyp:device_bluetooth', 10 '../device/bluetooth/bluetooth.gyp:device_bluetooth',
(...skipping 774 matching lines...) Expand 10 before | Expand all | Expand 10 after
785 '-e', '<(extra_header)', 785 '-e', '<(extra_header)',
786 '-s', '<(stubs_filename_root)', 786 '-s', '<(stubs_filename_root)',
787 '-p', '<(project_path)', 787 '-p', '<(project_path)',
788 '<@(_inputs)', 788 '<@(_inputs)',
789 ], 789 ],
790 'process_outputs_as_sources': 1, 790 'process_outputs_as_sources': 1,
791 'message': 'Generating libv4l2 stubs for dynamic loading', 791 'message': 'Generating libv4l2 stubs for dynamic loading',
792 }, 792 },
793 ], 793 ],
794 }], 794 }],
795 ['chromeos==1', { 795 ['chromeos==1 or OS=="linux"', {
796 'sources': [ 796 'sources': [
797 'common/gpu/media/accelerated_video_decoder.h', 797 'common/gpu/media/accelerated_video_decoder.h',
798 'common/gpu/media/h264_decoder.cc', 798 'common/gpu/media/h264_decoder.cc',
799 'common/gpu/media/h264_decoder.h', 799 'common/gpu/media/h264_decoder.h',
800 'common/gpu/media/h264_dpb.cc', 800 'common/gpu/media/h264_dpb.cc',
801 'common/gpu/media/h264_dpb.h', 801 'common/gpu/media/h264_dpb.h',
802 'common/gpu/media/vp8_decoder.cc', 802 'common/gpu/media/vp8_decoder.cc',
803 'common/gpu/media/vp8_decoder.h', 803 'common/gpu/media/vp8_decoder.h',
804 'common/gpu/media/vp8_picture.cc', 804 'common/gpu/media/vp8_picture.cc',
805 'common/gpu/media/vp8_picture.h', 805 'common/gpu/media/vp8_picture.h',
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
841 'include_dirs': [ 841 'include_dirs': [
842 '<(DEPTH)/third_party/khronos', 842 '<(DEPTH)/third_party/khronos',
843 ], 843 ],
844 }], 844 }],
845 ['target_arch == "arm" and chromeos == 1', { 845 ['target_arch == "arm" and chromeos == 1', {
846 'sources': [ 846 'sources': [
847 'common/gpu/media/tegra_v4l2_device.cc', 847 'common/gpu/media/tegra_v4l2_device.cc',
848 'common/gpu/media/tegra_v4l2_device.h', 848 'common/gpu/media/tegra_v4l2_device.h',
849 ], 849 ],
850 }], 850 }],
851 ['target_arch != "arm" and chromeos == 1', { 851 ['target_arch != "arm" and (chromeos == 1 or OS == "linux")', {
852 'dependencies': [ 852 'dependencies': [
853 '../media/media.gyp:media', 853 '../media/media.gyp:media',
854 '../third_party/libyuv/libyuv.gyp:libyuv', 854 '../third_party/libyuv/libyuv.gyp:libyuv',
855 ], 855 ],
856 'sources': [ 856 'sources': [
857 'common/gpu/media/va_surface.h', 857 'common/gpu/media/va_surface.h',
858 'common/gpu/media/vaapi_jpeg_decode_accelerator.cc', 858 'common/gpu/media/vaapi_jpeg_decode_accelerator.cc',
859 'common/gpu/media/vaapi_jpeg_decode_accelerator.h', 859 'common/gpu/media/vaapi_jpeg_decode_accelerator.h',
860 'common/gpu/media/vaapi_jpeg_decoder.cc', 860 'common/gpu/media/vaapi_jpeg_decoder.cc',
861 'common/gpu/media/vaapi_jpeg_decoder.h', 861 'common/gpu/media/vaapi_jpeg_decoder.h',
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
1001 'sources!': [ 1001 'sources!': [
1002 'common/cursors/webcursor_ozone.cc', 1002 'common/cursors/webcursor_ozone.cc',
1003 'common/font_list_ozone.cc', 1003 'common/font_list_ozone.cc',
1004 'common/gpu/gpu_memory_buffer_factory_ozone.cc', 1004 'common/gpu/gpu_memory_buffer_factory_ozone.cc',
1005 'common/gpu/gpu_memory_buffer_factory_ozone_native_pixmap.cc', 1005 'common/gpu/gpu_memory_buffer_factory_ozone_native_pixmap.cc',
1006 'common/gpu/gpu_memory_buffer_factory_ozone_native_pixmap.h', 1006 'common/gpu/gpu_memory_buffer_factory_ozone_native_pixmap.h',
1007 ], 1007 ],
1008 }], 1008 }],
1009 ], 1009 ],
1010 } 1010 }
OLDNEW
« no previous file with comments | « content/common/gpu/media/jpeg_decode_accelerator_unittest.cc ('k') | content/content_gpu.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698