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 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
588 'public/renderer/media_stream_audio_sink.h', | 588 'public/renderer/media_stream_audio_sink.h', |
589 'public/renderer/media_stream_renderer_factory.h', | 589 'public/renderer/media_stream_renderer_factory.h', |
590 'public/renderer/media_stream_sink.h', | 590 'public/renderer/media_stream_sink.h', |
591 'public/renderer/media_stream_video_sink.cc', | 591 'public/renderer/media_stream_video_sink.cc', |
592 'public/renderer/media_stream_video_sink.h', | 592 'public/renderer/media_stream_video_sink.h', |
593 'public/renderer/webrtc_log_message_delegate.h', | 593 'public/renderer/webrtc_log_message_delegate.h', |
594 ], | 594 ], |
595 # WebRTC-specific sources. Put WebRTC plugin-related stuff in the | 595 # WebRTC-specific sources. Put WebRTC plugin-related stuff in the |
596 # Plugin+WebRTC section below. | 596 # Plugin+WebRTC section below. |
597 'private_renderer_webrtc_sources': [ | 597 'private_renderer_webrtc_sources': [ |
| 598 'renderer/media/media_recorder_handler.cc', |
| 599 'renderer/media/media_recorder_handler.h', |
598 'renderer/media/media_stream.cc', | 600 'renderer/media/media_stream.cc', |
599 'renderer/media/media_stream.h', | 601 'renderer/media/media_stream.h', |
600 'renderer/media/media_stream_audio_processor.cc', | 602 'renderer/media/media_stream_audio_processor.cc', |
601 'renderer/media/media_stream_audio_processor.h', | 603 'renderer/media/media_stream_audio_processor.h', |
602 'renderer/media/media_stream_audio_processor_options.cc', | 604 'renderer/media/media_stream_audio_processor_options.cc', |
603 'renderer/media/media_stream_audio_processor_options.h', | 605 'renderer/media/media_stream_audio_processor_options.h', |
604 'renderer/media/media_stream_audio_sink_owner.cc', | 606 'renderer/media/media_stream_audio_sink_owner.cc', |
605 'renderer/media/media_stream_audio_sink_owner.h', | 607 'renderer/media/media_stream_audio_sink_owner.h', |
606 'renderer/media/media_stream_audio_source.cc', | 608 'renderer/media/media_stream_audio_source.cc', |
607 'renderer/media/media_stream_audio_source.h', | 609 'renderer/media/media_stream_audio_source.h', |
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
882 }], | 884 }], |
883 ], | 885 ], |
884 'target_conditions': [ | 886 'target_conditions': [ |
885 ['OS=="android"', { | 887 ['OS=="android"', { |
886 'sources/': [ | 888 'sources/': [ |
887 ['include', '^renderer/render_view_linux\\.cc$'], | 889 ['include', '^renderer/render_view_linux\\.cc$'], |
888 ], | 890 ], |
889 }], | 891 }], |
890 ], | 892 ], |
891 } | 893 } |
OLD | NEW |