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

Side by Side Diff: content/content_renderer.gypi

Issue 1406113002: Add AudioTrackRecorder for audio component of MediaStream recording. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments Created 5 years, 1 month 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
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 599 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 'public/renderer/media_stream_audio_sink.h', 610 'public/renderer/media_stream_audio_sink.h',
611 'public/renderer/media_stream_renderer_factory.h', 611 'public/renderer/media_stream_renderer_factory.h',
612 'public/renderer/media_stream_sink.h', 612 'public/renderer/media_stream_sink.h',
613 'public/renderer/media_stream_video_sink.cc', 613 'public/renderer/media_stream_video_sink.cc',
614 'public/renderer/media_stream_video_sink.h', 614 'public/renderer/media_stream_video_sink.h',
615 'public/renderer/webrtc_log_message_delegate.h', 615 'public/renderer/webrtc_log_message_delegate.h',
616 ], 616 ],
617 # WebRTC-specific sources. Put WebRTC plugin-related stuff in the 617 # WebRTC-specific sources. Put WebRTC plugin-related stuff in the
618 # Plugin+WebRTC section below. 618 # Plugin+WebRTC section below.
619 'private_renderer_webrtc_sources': [ 619 'private_renderer_webrtc_sources': [
620 'renderer/media/audio_track_recorder.cc',
621 'renderer/media/audio_track_recorder.h',
620 'renderer/media/media_recorder_handler.cc', 622 'renderer/media/media_recorder_handler.cc',
621 'renderer/media/media_recorder_handler.h', 623 'renderer/media/media_recorder_handler.h',
622 'renderer/media/media_stream.cc', 624 'renderer/media/media_stream.cc',
623 'renderer/media/media_stream.h', 625 'renderer/media/media_stream.h',
624 'renderer/media/media_stream_audio_processor.cc', 626 'renderer/media/media_stream_audio_processor.cc',
625 'renderer/media/media_stream_audio_processor.h', 627 'renderer/media/media_stream_audio_processor.h',
626 'renderer/media/media_stream_audio_processor_options.cc', 628 'renderer/media/media_stream_audio_processor_options.cc',
627 'renderer/media/media_stream_audio_processor_options.h', 629 'renderer/media/media_stream_audio_processor_options.h',
628 'renderer/media/media_stream_audio_sink_owner.cc', 630 'renderer/media/media_stream_audio_sink_owner.cc',
629 'renderer/media/media_stream_audio_sink_owner.h', 631 'renderer/media/media_stream_audio_sink_owner.h',
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
782 ], 784 ],
783 }], 785 }],
784 ['OS=="win" and win_use_allocator_shim==1', { 786 ['OS=="win" and win_use_allocator_shim==1', {
785 'dependencies': [ 787 'dependencies': [
786 '../base/allocator/allocator.gyp:allocator', 788 '../base/allocator/allocator.gyp:allocator',
787 ], 789 ],
788 }], 790 }],
789 ['OS=="android"', { 791 ['OS=="android"', {
790 'sources!': [ 792 'sources!': [
791 'renderer/media/audio_decoder.cc', 793 'renderer/media/audio_decoder.cc',
794 'renderer/media/audio_track_recorder.cc',
795 'renderer/media/audio_track_recorder.h',
792 'renderer/media/media_recorder_handler.cc', 796 'renderer/media/media_recorder_handler.cc',
793 'renderer/media/media_recorder_handler.h', 797 'renderer/media/media_recorder_handler.h',
794 'renderer/media/video_track_recorder.cc', 798 'renderer/media/video_track_recorder.cc',
795 'renderer/media/video_track_recorder.h', 799 'renderer/media/video_track_recorder.h',
796 'renderer/usb/type_converters.cc', 800 'renderer/usb/type_converters.cc',
797 'renderer/usb/type_converters.h', 801 'renderer/usb/type_converters.h',
798 'renderer/usb/web_usb_client_impl.cc', 802 'renderer/usb/web_usb_client_impl.cc',
799 'renderer/usb/web_usb_client_impl.h', 803 'renderer/usb/web_usb_client_impl.h',
800 'renderer/usb/web_usb_device_impl.cc', 804 'renderer/usb/web_usb_device_impl.cc',
801 'renderer/usb/web_usb_device_impl.h', 805 'renderer/usb/web_usb_device_impl.h',
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
914 }], 918 }],
915 ], 919 ],
916 'target_conditions': [ 920 'target_conditions': [
917 ['OS=="android"', { 921 ['OS=="android"', {
918 'sources/': [ 922 'sources/': [
919 ['include', '^renderer/render_view_linux\\.cc$'], 923 ['include', '^renderer/render_view_linux\\.cc$'],
920 ], 924 ],
921 }], 925 }],
922 ], 926 ],
923 } 927 }
OLDNEW
« no previous file with comments | « no previous file | content/content_tests.gypi » ('j') | content/renderer/media/audio_track_recorder.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698