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 '../gin/gin.gyp:gin', | 7 '../gin/gin.gyp:gin', |
8 '../jingle/jingle.gyp:jingle_glue', | 8 '../jingle/jingle.gyp:jingle_glue', |
9 '../media/media.gyp:media', | 9 '../media/media.gyp:media', |
10 '../net/net.gyp:net', | 10 '../net/net.gyp:net', |
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
583 '../third_party/webrtc/modules/modules.gyp:audio_device', | 583 '../third_party/webrtc/modules/modules.gyp:audio_device', |
584 '../third_party/webrtc/modules/modules.gyp:audio_processing', | 584 '../third_party/webrtc/modules/modules.gyp:audio_processing', |
585 '<(DEPTH)/crypto/crypto.gyp:crypto', | 585 '<(DEPTH)/crypto/crypto.gyp:crypto', |
586 ], | 586 ], |
587 'sources': [ | 587 'sources': [ |
588 'public/renderer/media_stream_audio_sink.h', | 588 'public/renderer/media_stream_audio_sink.h', |
589 'public/renderer/media_stream_audio_sink.cc', | 589 'public/renderer/media_stream_audio_sink.cc', |
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/media_stream_video_source.cc', |
| 594 'public/renderer/media_stream_video_source.h', |
593 'public/renderer/webrtc_log_message_delegate.h', | 595 'public/renderer/webrtc_log_message_delegate.h', |
594 'renderer/media/media_stream_audio_processor.cc', | 596 'renderer/media/media_stream_audio_processor.cc', |
595 'renderer/media/media_stream_audio_processor.h', | 597 'renderer/media/media_stream_audio_processor.h', |
596 'renderer/media/media_stream_audio_processor_options.cc', | 598 'renderer/media/media_stream_audio_processor_options.cc', |
597 'renderer/media/media_stream_audio_processor_options.h', | 599 'renderer/media/media_stream_audio_processor_options.h', |
598 'renderer/media/media_stream_audio_sink_owner.cc', | 600 'renderer/media/media_stream_audio_sink_owner.cc', |
599 'renderer/media/media_stream_audio_sink_owner.h', | 601 'renderer/media/media_stream_audio_sink_owner.h', |
600 'renderer/media/media_stream_audio_track_sink.h', | 602 'renderer/media/media_stream_audio_track_sink.h', |
601 'renderer/media/media_stream_video_track.cc', | 603 'renderer/media/media_stream_video_track.cc', |
602 'renderer/media/media_stream_video_track.h', | 604 'renderer/media/media_stream_video_track.h', |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
750 }], | 752 }], |
751 ], | 753 ], |
752 'target_conditions': [ | 754 'target_conditions': [ |
753 ['OS=="android"', { | 755 ['OS=="android"', { |
754 'sources/': [ | 756 'sources/': [ |
755 ['include', '^renderer/render_view_linux\\.cc$'], | 757 ['include', '^renderer/render_view_linux\\.cc$'], |
756 ], | 758 ], |
757 }], | 759 }], |
758 ], | 760 ], |
759 } | 761 } |
OLD | NEW |