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

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

Issue 357903003: Revert 279958 "Revert "Revert 279650 "Add VaapiVideoEncodeAccele..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 5 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 705 matching lines...) Expand 10 before | Expand all | Expand 10 after
716 'common/gpu/media/v4l2_video_device.cc', 716 'common/gpu/media/v4l2_video_device.cc',
717 'common/gpu/media/v4l2_video_device.h', 717 'common/gpu/media/v4l2_video_device.h',
718 'common/gpu/media/v4l2_video_encode_accelerator.cc', 718 'common/gpu/media/v4l2_video_encode_accelerator.cc',
719 'common/gpu/media/v4l2_video_encode_accelerator.h', 719 'common/gpu/media/v4l2_video_encode_accelerator.h',
720 ], 720 ],
721 'include_dirs': [ 721 'include_dirs': [
722 '<(DEPTH)/third_party/khronos', 722 '<(DEPTH)/third_party/khronos',
723 ], 723 ],
724 }], 724 }],
725 ['target_arch != "arm" and chromeos == 1 and use_x11 == 1', { 725 ['target_arch != "arm" and chromeos == 1 and use_x11 == 1', {
726 'dependencies': [
727 '../media/media.gyp:media',
728 '../third_party/libyuv/libyuv.gyp:libyuv',
729 ],
730 'sources': [ 726 'sources': [
731 'common/gpu/media/h264_dpb.cc', 727 'common/gpu/media/h264_dpb.cc',
732 'common/gpu/media/h264_dpb.h', 728 'common/gpu/media/h264_dpb.h',
733 'common/gpu/media/va_surface.h', 729 'common/gpu/media/va_surface.h',
734 'common/gpu/media/vaapi_h264_decoder.cc', 730 'common/gpu/media/vaapi_h264_decoder.cc',
735 'common/gpu/media/vaapi_h264_decoder.h', 731 'common/gpu/media/vaapi_h264_decoder.h',
736 'common/gpu/media/vaapi_video_decode_accelerator.cc', 732 'common/gpu/media/vaapi_video_decode_accelerator.cc',
737 'common/gpu/media/vaapi_video_decode_accelerator.h', 733 'common/gpu/media/vaapi_video_decode_accelerator.h',
738 'common/gpu/media/vaapi_video_encode_accelerator.cc',
739 'common/gpu/media/vaapi_video_encode_accelerator.h',
740 'common/gpu/media/vaapi_wrapper.cc', 734 'common/gpu/media/vaapi_wrapper.cc',
741 'common/gpu/media/vaapi_wrapper.h', 735 'common/gpu/media/vaapi_wrapper.h',
742 ], 736 ],
743 'variables': { 737 'variables': {
744 'generate_stubs_script': '../tools/generate_stubs/generate_stubs.py', 738 'generate_stubs_script': '../tools/generate_stubs/generate_stubs.py',
745 'extra_header': 'common/gpu/media/va_stub_header.fragment', 739 'extra_header': 'common/gpu/media/va_stub_header.fragment',
746 'sig_files': ['common/gpu/media/va.sigs'], 740 'sig_files': ['common/gpu/media/va.sigs'],
747 'outfile_type': 'posix_stubs', 741 'outfile_type': 'posix_stubs',
748 'stubs_filename_root': 'va_stubs', 742 'stubs_filename_root': 'va_stubs',
749 'project_path': 'content/common/gpu/media', 743 'project_path': 'content/common/gpu/media',
750 'intermediate_dir': '<(INTERMEDIATE_DIR)', 744 'intermediate_dir': '<(INTERMEDIATE_DIR)',
751 'output_root': '<(SHARED_INTERMEDIATE_DIR)/va', 745 'output_root': '<(SHARED_INTERMEDIATE_DIR)/va',
752 }, 746 },
753 'include_dirs': [ 747 'include_dirs': [
754 '<(DEPTH)/third_party/libva', 748 '<(DEPTH)/third_party/libva',
755 '<(DEPTH)/third_party/libyuv',
756 '<(output_root)', 749 '<(output_root)',
757 ], 750 ],
758 'actions': [ 751 'actions': [
759 { 752 {
760 'action_name': 'generate_stubs', 753 'action_name': 'generate_stubs',
761 'inputs': [ 754 'inputs': [
762 '<(generate_stubs_script)', 755 '<(generate_stubs_script)',
763 '<(extra_header)', 756 '<(extra_header)',
764 '<@(sig_files)', 757 '<@(sig_files)',
765 ], 758 ],
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
857 }, { 850 }, {
858 'defines': ['USE_SECCOMP_BPF'], 851 'defines': ['USE_SECCOMP_BPF'],
859 }], 852 }],
860 ['use_ozone==1', { 853 ['use_ozone==1', {
861 'dependencies': [ 854 'dependencies': [
862 '../ui/ozone/ozone.gyp:ozone', 855 '../ui/ozone/ozone.gyp:ozone',
863 ], 856 ],
864 }], 857 }],
865 ], 858 ],
866 } 859 }
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