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 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_ann
otations', | 8 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_ann
otations', |
9 '../cc/cc.gyp:cc', | 9 '../cc/cc.gyp:cc', |
10 '../cc/cc.gyp:cc_proto', | 10 '../cc/cc.gyp:cc_proto', |
(...skipping 611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
622 'public/renderer/media_stream_video_sink.h', | 622 'public/renderer/media_stream_video_sink.h', |
623 'public/renderer/webrtc_log_message_delegate.h', | 623 'public/renderer/webrtc_log_message_delegate.h', |
624 ], | 624 ], |
625 # WebRTC-specific sources. Put WebRTC plugin-related stuff in the | 625 # WebRTC-specific sources. Put WebRTC plugin-related stuff in the |
626 # Plugin+WebRTC section below. | 626 # Plugin+WebRTC section below. |
627 'private_renderer_webrtc_sources': [ | 627 'private_renderer_webrtc_sources': [ |
628 'renderer/media/audio_repetition_detector.cc', | 628 'renderer/media/audio_repetition_detector.cc', |
629 'renderer/media/audio_repetition_detector.h', | 629 'renderer/media/audio_repetition_detector.h', |
630 'renderer/media/audio_track_recorder.cc', | 630 'renderer/media/audio_track_recorder.cc', |
631 'renderer/media/audio_track_recorder.h', | 631 'renderer/media/audio_track_recorder.h', |
| 632 'renderer/media/canvas_capture_handler.cc', |
| 633 'renderer/media/canvas_capture_handler.h', |
632 'renderer/media/media_recorder_handler.cc', | 634 'renderer/media/media_recorder_handler.cc', |
633 'renderer/media/media_recorder_handler.h', | 635 'renderer/media/media_recorder_handler.h', |
634 'renderer/media/media_stream.cc', | 636 'renderer/media/media_stream.cc', |
635 'renderer/media/media_stream.h', | 637 'renderer/media/media_stream.h', |
636 'renderer/media/media_stream_audio_processor.cc', | 638 'renderer/media/media_stream_audio_processor.cc', |
637 'renderer/media/media_stream_audio_processor.h', | 639 'renderer/media/media_stream_audio_processor.h', |
638 'renderer/media/media_stream_audio_processor_options.cc', | 640 'renderer/media/media_stream_audio_processor_options.cc', |
639 'renderer/media/media_stream_audio_processor_options.h', | 641 'renderer/media/media_stream_audio_processor_options.h', |
640 'renderer/media/media_stream_audio_sink_owner.cc', | 642 'renderer/media/media_stream_audio_sink_owner.cc', |
641 'renderer/media/media_stream_audio_sink_owner.h', | 643 'renderer/media/media_stream_audio_sink_owner.h', |
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
925 }], | 927 }], |
926 ], | 928 ], |
927 'target_conditions': [ | 929 'target_conditions': [ |
928 ['OS=="android"', { | 930 ['OS=="android"', { |
929 'sources/': [ | 931 'sources/': [ |
930 ['include', '^renderer/render_view_linux\\.cc$'], | 932 ['include', '^renderer/render_view_linux\\.cc$'], |
931 ], | 933 ], |
932 }], | 934 }], |
933 ], | 935 ], |
934 } | 936 } |
OLD | NEW |