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