OLD | NEW |
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 755 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
766 'common/gpu/media/v4l2_video_decode_accelerator.h', | 766 'common/gpu/media/v4l2_video_decode_accelerator.h', |
767 'common/gpu/media/v4l2_video_device.cc', | 767 'common/gpu/media/v4l2_video_device.cc', |
768 'common/gpu/media/v4l2_video_device.h', | 768 'common/gpu/media/v4l2_video_device.h', |
769 'common/gpu/media/v4l2_video_encode_accelerator.cc', | 769 'common/gpu/media/v4l2_video_encode_accelerator.cc', |
770 'common/gpu/media/v4l2_video_encode_accelerator.h', | 770 'common/gpu/media/v4l2_video_encode_accelerator.h', |
771 ], | 771 ], |
772 'include_dirs': [ | 772 'include_dirs': [ |
773 '<(DEPTH)/third_party/khronos', | 773 '<(DEPTH)/third_party/khronos', |
774 ], | 774 ], |
775 }], | 775 }], |
776 ['target_arch != "arm" and chromeos == 1 and use_x11 == 1', { | 776 ['target_arch != "arm" and chromeos == 1', { |
777 'dependencies': [ | 777 'dependencies': [ |
778 '../media/media.gyp:media', | 778 '../media/media.gyp:media', |
779 '../third_party/libyuv/libyuv.gyp:libyuv', | 779 '../third_party/libyuv/libyuv.gyp:libyuv', |
780 ], | 780 ], |
781 'sources': [ | 781 'sources': [ |
782 'common/gpu/media/h264_dpb.cc', | 782 'common/gpu/media/h264_dpb.cc', |
783 'common/gpu/media/h264_dpb.h', | 783 'common/gpu/media/h264_dpb.h', |
784 'common/gpu/media/va_surface.h', | 784 'common/gpu/media/va_surface.h', |
785 'common/gpu/media/vaapi_h264_decoder.cc', | 785 'common/gpu/media/vaapi_h264_decoder.cc', |
786 'common/gpu/media/vaapi_h264_decoder.h', | 786 'common/gpu/media/vaapi_h264_decoder.h', |
| 787 'common/gpu/media/vaapi_picture.cc', |
| 788 'common/gpu/media/vaapi_picture.h', |
787 'common/gpu/media/vaapi_video_decode_accelerator.cc', | 789 'common/gpu/media/vaapi_video_decode_accelerator.cc', |
788 'common/gpu/media/vaapi_video_decode_accelerator.h', | 790 'common/gpu/media/vaapi_video_decode_accelerator.h', |
789 'common/gpu/media/vaapi_video_encode_accelerator.cc', | 791 'common/gpu/media/vaapi_video_encode_accelerator.cc', |
790 'common/gpu/media/vaapi_video_encode_accelerator.h', | 792 'common/gpu/media/vaapi_video_encode_accelerator.h', |
791 'common/gpu/media/vaapi_wrapper.cc', | 793 'common/gpu/media/vaapi_wrapper.cc', |
792 'common/gpu/media/vaapi_wrapper.h', | 794 'common/gpu/media/vaapi_wrapper.h', |
793 ], | 795 ], |
| 796 'conditions': [ |
| 797 ['use_x11 == 1', { |
| 798 'variables': { |
| 799 'sig_files': [ |
| 800 'common/gpu/media/va.sigs', |
| 801 'common/gpu/media/va_x11.sigs', |
| 802 ], |
| 803 }, |
| 804 'sources': [ |
| 805 'common/gpu/media/vaapi_tfp_picture.cc', |
| 806 'common/gpu/media/vaapi_tfp_picture.h', |
| 807 ], |
| 808 }, { |
| 809 'variables': { |
| 810 'sig_files': [ |
| 811 'common/gpu/media/va.sigs', |
| 812 'common/gpu/media/va_drm.sigs', |
| 813 ], |
| 814 }, |
| 815 'sources': [ |
| 816 'common/gpu/media/vaapi_drm_picture.cc', |
| 817 'common/gpu/media/vaapi_drm_picture.h', |
| 818 ], |
| 819 }], |
| 820 ], |
794 'variables': { | 821 'variables': { |
795 'generate_stubs_script': '../tools/generate_stubs/generate_stubs.py', | 822 'generate_stubs_script': '../tools/generate_stubs/generate_stubs.py', |
796 'extra_header': 'common/gpu/media/va_stub_header.fragment', | 823 'extra_header': 'common/gpu/media/va_stub_header.fragment', |
797 'sig_files': ['common/gpu/media/va.sigs'], | |
798 'outfile_type': 'posix_stubs', | 824 'outfile_type': 'posix_stubs', |
799 'stubs_filename_root': 'va_stubs', | 825 'stubs_filename_root': 'va_stubs', |
800 'project_path': 'content/common/gpu/media', | 826 'project_path': 'content/common/gpu/media', |
801 'intermediate_dir': '<(INTERMEDIATE_DIR)', | 827 'intermediate_dir': '<(INTERMEDIATE_DIR)', |
802 'output_root': '<(SHARED_INTERMEDIATE_DIR)/va', | 828 'output_root': '<(SHARED_INTERMEDIATE_DIR)/va', |
803 }, | 829 }, |
804 'include_dirs': [ | 830 'include_dirs': [ |
805 '<(DEPTH)/third_party/libva', | 831 '<(DEPTH)/third_party/libva', |
806 '<(DEPTH)/third_party/libyuv', | 832 '<(DEPTH)/third_party/libyuv', |
807 '<(output_root)', | 833 '<(output_root)', |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
926 'common/gpu/client/gpu_memory_buffer_impl_ozone.cc', | 952 'common/gpu/client/gpu_memory_buffer_impl_ozone.cc', |
927 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc', | 953 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc', |
928 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.h', | 954 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.h', |
929 'common/gpu/gpu_memory_buffer_factory_ozone.cc', | 955 'common/gpu/gpu_memory_buffer_factory_ozone.cc', |
930 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.cc', | 956 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.cc', |
931 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.h', | 957 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.h', |
932 ], | 958 ], |
933 }], | 959 }], |
934 ], | 960 ], |
935 } | 961 } |
OLD | NEW |