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

Side by Side Diff: trunk/src/content/content_common.gypi

Issue 350413002: Revert 279650 "Add VaapiVideoEncodeAccelerator for HW-accelerate..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
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 699 matching lines...) Expand 10 before | Expand all | Expand 10 after
710 'common/gpu/media/v4l2_video_device.cc', 710 'common/gpu/media/v4l2_video_device.cc',
711 'common/gpu/media/v4l2_video_device.h', 711 'common/gpu/media/v4l2_video_device.h',
712 'common/gpu/media/v4l2_video_encode_accelerator.cc', 712 'common/gpu/media/v4l2_video_encode_accelerator.cc',
713 'common/gpu/media/v4l2_video_encode_accelerator.h', 713 'common/gpu/media/v4l2_video_encode_accelerator.h',
714 ], 714 ],
715 'include_dirs': [ 715 'include_dirs': [
716 '<(DEPTH)/third_party/khronos', 716 '<(DEPTH)/third_party/khronos',
717 ], 717 ],
718 }], 718 }],
719 ['target_arch != "arm" and chromeos == 1 and use_x11 == 1', { 719 ['target_arch != "arm" and chromeos == 1 and use_x11 == 1', {
720 'dependencies': [
721 '../media/media.gyp:media',
722 '../third_party/libyuv/libyuv.gyp:libyuv',
723 ],
724 'sources': [ 720 'sources': [
725 'common/gpu/media/h264_dpb.cc', 721 'common/gpu/media/h264_dpb.cc',
726 'common/gpu/media/h264_dpb.h', 722 'common/gpu/media/h264_dpb.h',
727 'common/gpu/media/va_surface.h', 723 'common/gpu/media/va_surface.h',
728 'common/gpu/media/vaapi_h264_decoder.cc', 724 'common/gpu/media/vaapi_h264_decoder.cc',
729 'common/gpu/media/vaapi_h264_decoder.h', 725 'common/gpu/media/vaapi_h264_decoder.h',
730 'common/gpu/media/vaapi_video_decode_accelerator.cc', 726 'common/gpu/media/vaapi_video_decode_accelerator.cc',
731 'common/gpu/media/vaapi_video_decode_accelerator.h', 727 'common/gpu/media/vaapi_video_decode_accelerator.h',
732 'common/gpu/media/vaapi_video_encode_accelerator.cc',
733 'common/gpu/media/vaapi_video_encode_accelerator.h',
734 'common/gpu/media/vaapi_wrapper.cc', 728 'common/gpu/media/vaapi_wrapper.cc',
735 'common/gpu/media/vaapi_wrapper.h', 729 'common/gpu/media/vaapi_wrapper.h',
736 ], 730 ],
737 'variables': { 731 'variables': {
738 'generate_stubs_script': '../tools/generate_stubs/generate_stubs.py', 732 'generate_stubs_script': '../tools/generate_stubs/generate_stubs.py',
739 'extra_header': 'common/gpu/media/va_stub_header.fragment', 733 'extra_header': 'common/gpu/media/va_stub_header.fragment',
740 'sig_files': ['common/gpu/media/va.sigs'], 734 'sig_files': ['common/gpu/media/va.sigs'],
741 'outfile_type': 'posix_stubs', 735 'outfile_type': 'posix_stubs',
742 'stubs_filename_root': 'va_stubs', 736 'stubs_filename_root': 'va_stubs',
743 'project_path': 'content/common/gpu/media', 737 'project_path': 'content/common/gpu/media',
744 'intermediate_dir': '<(INTERMEDIATE_DIR)', 738 'intermediate_dir': '<(INTERMEDIATE_DIR)',
745 'output_root': '<(SHARED_INTERMEDIATE_DIR)/va', 739 'output_root': '<(SHARED_INTERMEDIATE_DIR)/va',
746 }, 740 },
747 'include_dirs': [ 741 'include_dirs': [
748 '<(DEPTH)/third_party/libva', 742 '<(DEPTH)/third_party/libva',
749 '<(DEPTH)/third_party/libyuv',
750 '<(output_root)', 743 '<(output_root)',
751 ], 744 ],
752 'actions': [ 745 'actions': [
753 { 746 {
754 'action_name': 'generate_stubs', 747 'action_name': 'generate_stubs',
755 'inputs': [ 748 'inputs': [
756 '<(generate_stubs_script)', 749 '<(generate_stubs_script)',
757 '<(extra_header)', 750 '<(extra_header)',
758 '<@(sig_files)', 751 '<@(sig_files)',
759 ], 752 ],
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
851 }, { 844 }, {
852 'defines': ['USE_SECCOMP_BPF'], 845 'defines': ['USE_SECCOMP_BPF'],
853 }], 846 }],
854 ['use_ozone==1', { 847 ['use_ozone==1', {
855 'dependencies': [ 848 'dependencies': [
856 '../ui/ozone/ozone.gyp:ozone', 849 '../ui/ozone/ozone.gyp:ozone',
857 ], 850 ],
858 }], 851 }],
859 ], 852 ],
860 } 853 }
OLDNEW
« no previous file with comments | « trunk/src/content/common/sandbox_linux/bpf_gpu_policy_linux.cc ('k') | trunk/src/content/content_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698