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/blink/cc_blink.gyp:cc_blink', | 10 '../cc/blink/cc_blink.gyp:cc_blink', |
(...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
616 'public/renderer/media_stream_audio_sink.h', | 616 'public/renderer/media_stream_audio_sink.h', |
617 'public/renderer/media_stream_renderer_factory.h', | 617 'public/renderer/media_stream_renderer_factory.h', |
618 'public/renderer/media_stream_sink.h', | 618 'public/renderer/media_stream_sink.h', |
619 'public/renderer/media_stream_video_sink.cc', | 619 'public/renderer/media_stream_video_sink.cc', |
620 'public/renderer/media_stream_video_sink.h', | 620 'public/renderer/media_stream_video_sink.h', |
621 'public/renderer/webrtc_log_message_delegate.h', | 621 'public/renderer/webrtc_log_message_delegate.h', |
622 ], | 622 ], |
623 # WebRTC-specific sources. Put WebRTC plugin-related stuff in the | 623 # WebRTC-specific sources. Put WebRTC plugin-related stuff in the |
624 # Plugin+WebRTC section below. | 624 # Plugin+WebRTC section below. |
625 'private_renderer_webrtc_sources': [ | 625 'private_renderer_webrtc_sources': [ |
| 626 'renderer/media/audio_repetition_detector.cc', |
| 627 'renderer/media/audio_repetition_detector.h', |
626 'renderer/media/media_recorder_handler.cc', | 628 'renderer/media/media_recorder_handler.cc', |
627 'renderer/media/media_recorder_handler.h', | 629 'renderer/media/media_recorder_handler.h', |
628 'renderer/media/media_stream.cc', | 630 'renderer/media/media_stream.cc', |
629 'renderer/media/media_stream.h', | 631 'renderer/media/media_stream.h', |
630 'renderer/media/media_stream_audio_processor.cc', | 632 'renderer/media/media_stream_audio_processor.cc', |
631 'renderer/media/media_stream_audio_processor.h', | 633 'renderer/media/media_stream_audio_processor.h', |
632 'renderer/media/media_stream_audio_processor_options.cc', | 634 'renderer/media/media_stream_audio_processor_options.cc', |
633 'renderer/media/media_stream_audio_processor_options.h', | 635 'renderer/media/media_stream_audio_processor_options.h', |
634 'renderer/media/media_stream_audio_sink_owner.cc', | 636 'renderer/media/media_stream_audio_sink_owner.cc', |
635 'renderer/media/media_stream_audio_sink_owner.h', | 637 'renderer/media/media_stream_audio_sink_owner.h', |
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
920 }], | 922 }], |
921 ], | 923 ], |
922 'target_conditions': [ | 924 'target_conditions': [ |
923 ['OS=="android"', { | 925 ['OS=="android"', { |
924 'sources/': [ | 926 'sources/': [ |
925 ['include', '^renderer/render_view_linux\\.cc$'], | 927 ['include', '^renderer/render_view_linux\\.cc$'], |
926 ], | 928 ], |
927 }], | 929 }], |
928 ], | 930 ], |
929 } | 931 } |
OLD | NEW |