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

Side by Side Diff: content/content_renderer.gypi

Issue 1211973012: [Experimental] MediaStreamRecorder playground (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed FFmpegMuxer, using instead libwebm::IMkvMuxer, which is partially added Created 5 years, 5 months 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
« no previous file with comments | « content/child/runtime_features.cc ('k') | content/renderer/DEPS » ('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 '../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 11 matching lines...) Expand all
22 '../mojo/mojo_base.gyp:mojo_geometry_lib', 22 '../mojo/mojo_base.gyp:mojo_geometry_lib',
23 '../mojo/mojo_base.gyp:mojo_url_type_converters', 23 '../mojo/mojo_base.gyp:mojo_url_type_converters',
24 '../net/net.gyp:net', 24 '../net/net.gyp:net',
25 '../skia/skia.gyp:skia', 25 '../skia/skia.gyp:skia',
26 '../skia/skia.gyp:skia_mojo', 26 '../skia/skia.gyp:skia_mojo',
27 '../storage/storage_common.gyp:storage_common', 27 '../storage/storage_common.gyp:storage_common',
28 '../third_party/WebKit/public/blink.gyp:blink', 28 '../third_party/WebKit/public/blink.gyp:blink',
29 '../third_party/icu/icu.gyp:icui18n', 29 '../third_party/icu/icu.gyp:icui18n',
30 '../third_party/icu/icu.gyp:icuuc', 30 '../third_party/icu/icu.gyp:icuuc',
31 '../third_party/libjingle/libjingle.gyp:libjingle', 31 '../third_party/libjingle/libjingle.gyp:libjingle',
32 '../third_party/libvpx/libvpx.gyp:libvpx',
32 '../third_party/mojo/mojo_edk.gyp:mojo_js_lib', 33 '../third_party/mojo/mojo_edk.gyp:mojo_js_lib',
33 '../third_party/npapi/npapi.gyp:npapi', 34 '../third_party/npapi/npapi.gyp:npapi',
34 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h', 35 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h',
35 '../ui/accessibility/accessibility.gyp:accessibility', 36 '../ui/accessibility/accessibility.gyp:accessibility',
36 '../ui/events/events.gyp:dom_keycode_converter', 37 '../ui/events/events.gyp:dom_keycode_converter',
37 '../ui/gfx/gfx.gyp:gfx', 38 '../ui/gfx/gfx.gyp:gfx',
38 '../ui/gfx/gfx.gyp:gfx_geometry', 39 '../ui/gfx/gfx.gyp:gfx_geometry',
39 '../ui/native_theme/native_theme.gyp:native_theme', 40 '../ui/native_theme/native_theme.gyp:native_theme',
40 '../ui/surface/surface.gyp:surface', 41 '../ui/surface/surface.gyp:surface',
41 '../v8/tools/gyp/v8.gyp:v8', 42 '../v8/tools/gyp/v8.gyp:v8',
(...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after
572 'public/renderer/media_stream_audio_sink.h', 573 'public/renderer/media_stream_audio_sink.h',
573 'public/renderer/media_stream_renderer_factory.h', 574 'public/renderer/media_stream_renderer_factory.h',
574 'public/renderer/media_stream_sink.h', 575 'public/renderer/media_stream_sink.h',
575 'public/renderer/media_stream_video_sink.cc', 576 'public/renderer/media_stream_video_sink.cc',
576 'public/renderer/media_stream_video_sink.h', 577 'public/renderer/media_stream_video_sink.h',
577 'public/renderer/webrtc_log_message_delegate.h', 578 'public/renderer/webrtc_log_message_delegate.h',
578 ], 579 ],
579 # WebRTC-specific sources. Put WebRTC plugin-related stuff in the 580 # WebRTC-specific sources. Put WebRTC plugin-related stuff in the
580 # Plugin+WebRTC section below. 581 # Plugin+WebRTC section below.
581 'private_renderer_webrtc_sources': [ 582 'private_renderer_webrtc_sources': [
583 'renderer/media/media_recorder_handler.cc',
584 'renderer/media/media_recorder_handler.h',
582 'renderer/media/media_stream.cc', 585 'renderer/media/media_stream.cc',
583 'renderer/media/media_stream.h', 586 'renderer/media/media_stream.h',
584 'renderer/media/media_stream_audio_processor.cc', 587 'renderer/media/media_stream_audio_processor.cc',
585 'renderer/media/media_stream_audio_processor.h', 588 'renderer/media/media_stream_audio_processor.h',
586 'renderer/media/media_stream_audio_processor_options.cc', 589 'renderer/media/media_stream_audio_processor_options.cc',
587 'renderer/media/media_stream_audio_processor_options.h', 590 'renderer/media/media_stream_audio_processor_options.h',
588 'renderer/media/media_stream_audio_sink_owner.cc', 591 'renderer/media/media_stream_audio_sink_owner.cc',
589 'renderer/media/media_stream_audio_sink_owner.h', 592 'renderer/media/media_stream_audio_sink_owner.h',
590 'renderer/media/media_stream_audio_source.cc', 593 'renderer/media/media_stream_audio_source.cc',
591 'renderer/media/media_stream_audio_source.h', 594 'renderer/media/media_stream_audio_source.h',
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
627 'renderer/media/rtc_video_encoder_factory.h', 630 'renderer/media/rtc_video_encoder_factory.h',
628 'renderer/media/rtc_video_renderer.cc', 631 'renderer/media/rtc_video_renderer.cc',
629 'renderer/media/rtc_video_renderer.h', 632 'renderer/media/rtc_video_renderer.h',
630 'renderer/media/speech_recognition_audio_sink.cc', 633 'renderer/media/speech_recognition_audio_sink.cc',
631 'renderer/media/speech_recognition_audio_sink.h', 634 'renderer/media/speech_recognition_audio_sink.h',
632 'renderer/media/user_media_client_impl.cc', 635 'renderer/media/user_media_client_impl.cc',
633 'renderer/media/video_source_handler.cc', 636 'renderer/media/video_source_handler.cc',
634 'renderer/media/video_source_handler.h', 637 'renderer/media/video_source_handler.h',
635 'renderer/media/video_track_adapter.cc', 638 'renderer/media/video_track_adapter.cc',
636 'renderer/media/video_track_adapter.h', 639 'renderer/media/video_track_adapter.h',
640 'renderer/media/video_track_recorder.cc',
641 'renderer/media/video_track_recorder.h',
637 'renderer/media/webaudio_capturer_source.cc', 642 'renderer/media/webaudio_capturer_source.cc',
638 'renderer/media/webaudio_capturer_source.h', 643 'renderer/media/webaudio_capturer_source.h',
639 'renderer/media/webrtc/media_stream_remote_video_source.cc', 644 'renderer/media/webrtc/media_stream_remote_video_source.cc',
640 'renderer/media/webrtc/media_stream_remote_video_source.h', 645 'renderer/media/webrtc/media_stream_remote_video_source.h',
641 'renderer/media/webrtc/media_stream_track_metrics.cc', 646 'renderer/media/webrtc/media_stream_track_metrics.cc',
642 'renderer/media/webrtc/media_stream_track_metrics.h', 647 'renderer/media/webrtc/media_stream_track_metrics.h',
643 'renderer/media/webrtc/peer_connection_dependency_factory.cc', 648 'renderer/media/webrtc/peer_connection_dependency_factory.cc',
644 'renderer/media/webrtc/peer_connection_dependency_factory.h', 649 'renderer/media/webrtc/peer_connection_dependency_factory.h',
645 'renderer/media/webrtc/stun_field_trial.cc', 650 'renderer/media/webrtc/stun_field_trial.cc',
646 'renderer/media/webrtc/stun_field_trial.h', 651 'renderer/media/webrtc/stun_field_trial.h',
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
853 }], 858 }],
854 ], 859 ],
855 'target_conditions': [ 860 'target_conditions': [
856 ['OS=="android"', { 861 ['OS=="android"', {
857 'sources/': [ 862 'sources/': [
858 ['include', '^renderer/render_view_linux\\.cc$'], 863 ['include', '^renderer/render_view_linux\\.cc$'],
859 ], 864 ],
860 }], 865 }],
861 ], 866 ],
862 } 867 }
OLDNEW
« no previous file with comments | « content/child/runtime_features.cc ('k') | content/renderer/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698