Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(274)

Side by Side Diff: content/content_renderer.gypi

Issue 83023005: Add VideoTrackSink interface to content/public (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix merge error Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | content/public/renderer/media_stream_sink.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 '../jingle/jingle.gyp:jingle_glue', 7 '../jingle/jingle.gyp:jingle_glue',
8 '../media/media.gyp:media', 8 '../media/media.gyp:media',
9 '../net/net.gyp:net', 9 '../net/net.gyp:net',
10 '../skia/skia.gyp:skia', 10 '../skia/skia.gyp:skia',
(...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after
582 'dependencies': [ 582 'dependencies': [
583 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc', 583 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc',
584 '../third_party/libjingle/libjingle.gyp:libpeerconnection', 584 '../third_party/libjingle/libjingle.gyp:libpeerconnection',
585 '../third_party/webrtc/modules/modules.gyp:audio_device', 585 '../third_party/webrtc/modules/modules.gyp:audio_device',
586 '../third_party/webrtc/modules/modules.gyp:audio_processing', 586 '../third_party/webrtc/modules/modules.gyp:audio_processing',
587 '<(DEPTH)/crypto/crypto.gyp:crypto', 587 '<(DEPTH)/crypto/crypto.gyp:crypto',
588 ], 588 ],
589 'sources': [ 589 'sources': [
590 'public/renderer/media_stream_audio_sink.h', 590 'public/renderer/media_stream_audio_sink.h',
591 'public/renderer/media_stream_audio_sink.cc', 591 'public/renderer/media_stream_audio_sink.cc',
592 'public/renderer/media_stream_sink.h',
593 'public/renderer/media_stream_video_sink.cc',
594 'public/renderer/media_stream_video_sink.h',
592 'public/renderer/webrtc_log_message_delegate.h', 595 'public/renderer/webrtc_log_message_delegate.h',
593 'renderer/media/media_stream_audio_processor.cc', 596 'renderer/media/media_stream_audio_processor.cc',
594 'renderer/media/media_stream_audio_processor.h', 597 'renderer/media/media_stream_audio_processor.h',
595 'renderer/media/media_stream_audio_processor_options.cc', 598 'renderer/media/media_stream_audio_processor_options.cc',
596 'renderer/media/media_stream_audio_processor_options.h', 599 'renderer/media/media_stream_audio_processor_options.h',
597 'renderer/media/media_stream_audio_sink_owner.cc', 600 'renderer/media/media_stream_audio_sink_owner.cc',
598 'renderer/media/media_stream_audio_sink_owner.h', 601 'renderer/media/media_stream_audio_sink_owner.h',
599 'renderer/media/media_stream_audio_track_sink.h', 602 'renderer/media/media_stream_audio_track_sink.h',
603 'renderer/media/media_stream_video_track.cc',
604 'renderer/media/media_stream_video_track.h',
600 'renderer/media/media_stream_center.cc', 605 'renderer/media/media_stream_center.cc',
601 'renderer/media/media_stream_dependency_factory.cc', 606 'renderer/media/media_stream_dependency_factory.cc',
602 'renderer/media/media_stream_dispatcher.cc', 607 'renderer/media/media_stream_dispatcher.cc',
603 'renderer/media/media_stream_impl.cc', 608 'renderer/media/media_stream_impl.cc',
604 'renderer/media/media_stream_registry_interface.h', 609 'renderer/media/media_stream_registry_interface.h',
605 'renderer/media/media_stream_source_observer.cc', 610 'renderer/media/media_stream_source_observer.cc',
606 'renderer/media/media_stream_source_observer.h', 611 'renderer/media/media_stream_source_observer.h',
607 'renderer/media/native_handle_impl.cc', 612 'renderer/media/native_handle_impl.cc',
608 'renderer/media/native_handle_impl.h', 613 'renderer/media/native_handle_impl.h',
609 'renderer/media/peer_connection_audio_sink_owner.cc', 614 'renderer/media/peer_connection_audio_sink_owner.cc',
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
655 'renderer/media/webrtc_identity_service.cc', 660 'renderer/media/webrtc_identity_service.cc',
656 'renderer/media/webrtc_identity_service.h', 661 'renderer/media/webrtc_identity_service.h',
657 'renderer/media/webrtc_local_audio_renderer.cc', 662 'renderer/media/webrtc_local_audio_renderer.cc',
658 'renderer/media/webrtc_local_audio_renderer.h', 663 'renderer/media/webrtc_local_audio_renderer.h',
659 'renderer/media/webrtc_local_audio_source_provider.cc', 664 'renderer/media/webrtc_local_audio_source_provider.cc',
660 'renderer/media/webrtc_local_audio_source_provider.h', 665 'renderer/media/webrtc_local_audio_source_provider.h',
661 'renderer/media/webrtc_local_audio_track.cc', 666 'renderer/media/webrtc_local_audio_track.cc',
662 'renderer/media/webrtc_local_audio_track.h', 667 'renderer/media/webrtc_local_audio_track.h',
663 'renderer/media/webrtc_logging.cc', 668 'renderer/media/webrtc_logging.cc',
664 'renderer/media/webrtc_logging.h', 669 'renderer/media/webrtc_logging.h',
670 'renderer/media/webrtc/webrtc_video_sink_adapter.cc',
671 'renderer/media/webrtc/webrtc_video_sink_adapter.h',
665 'renderer/p2p/host_address_request.cc', 672 'renderer/p2p/host_address_request.cc',
666 'renderer/p2p/host_address_request.h', 673 'renderer/p2p/host_address_request.h',
667 'renderer/p2p/ipc_network_manager.cc', 674 'renderer/p2p/ipc_network_manager.cc',
668 'renderer/p2p/ipc_network_manager.h', 675 'renderer/p2p/ipc_network_manager.h',
669 'renderer/p2p/ipc_socket_factory.cc', 676 'renderer/p2p/ipc_socket_factory.cc',
670 'renderer/p2p/ipc_socket_factory.h', 677 'renderer/p2p/ipc_socket_factory.h',
671 'renderer/p2p/network_list_observer.h', 678 'renderer/p2p/network_list_observer.h',
672 'renderer/p2p/port_allocator.cc', 679 'renderer/p2p/port_allocator.cc',
673 'renderer/p2p/port_allocator.h', 680 'renderer/p2p/port_allocator.h',
674 'renderer/p2p/socket_client_impl.cc', 681 'renderer/p2p/socket_client_impl.cc',
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
745 }], 752 }],
746 ], 753 ],
747 'target_conditions': [ 754 'target_conditions': [
748 ['OS=="android"', { 755 ['OS=="android"', {
749 'sources/': [ 756 'sources/': [
750 ['include', '^renderer/render_view_linux\\.cc$'], 757 ['include', '^renderer/render_view_linux\\.cc$'],
751 ], 758 ],
752 }], 759 }],
753 ], 760 ],
754 } 761 }
OLDNEW
« no previous file with comments | « no previous file | content/public/renderer/media_stream_sink.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698