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

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: miu's comment 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
« no previous file with comments | « no previous file | content/content_tests.gypi » ('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 610 matching lines...) Expand 10 before | Expand all | Expand 10 after
621 'public/renderer/media_stream_sink.h', 621 'public/renderer/media_stream_sink.h',
622 'public/renderer/media_stream_video_sink.cc', 622 'public/renderer/media_stream_video_sink.cc',
623 'public/renderer/media_stream_video_sink.h', 623 'public/renderer/media_stream_video_sink.h',
624 'public/renderer/webrtc_log_message_delegate.h', 624 'public/renderer/webrtc_log_message_delegate.h',
625 ], 625 ],
626 # WebRTC-specific sources. Put WebRTC plugin-related stuff in the 626 # WebRTC-specific sources. Put WebRTC plugin-related stuff in the
627 # Plugin+WebRTC section below. 627 # Plugin+WebRTC section below.
628 'private_renderer_webrtc_sources': [ 628 'private_renderer_webrtc_sources': [
629 'renderer/media/audio_repetition_detector.cc', 629 'renderer/media/audio_repetition_detector.cc',
630 'renderer/media/audio_repetition_detector.h', 630 'renderer/media/audio_repetition_detector.h',
631 'renderer/media/audio_track_recorder.cc',
632 'renderer/media/audio_track_recorder.h',
631 'renderer/media/media_recorder_handler.cc', 633 'renderer/media/media_recorder_handler.cc',
632 'renderer/media/media_recorder_handler.h', 634 'renderer/media/media_recorder_handler.h',
633 'renderer/media/media_stream.cc', 635 'renderer/media/media_stream.cc',
634 'renderer/media/media_stream.h', 636 'renderer/media/media_stream.h',
635 'renderer/media/media_stream_audio_processor.cc', 637 'renderer/media/media_stream_audio_processor.cc',
636 'renderer/media/media_stream_audio_processor.h', 638 'renderer/media/media_stream_audio_processor.h',
637 'renderer/media/media_stream_audio_processor_options.cc', 639 'renderer/media/media_stream_audio_processor_options.cc',
638 'renderer/media/media_stream_audio_processor_options.h', 640 'renderer/media/media_stream_audio_processor_options.h',
639 'renderer/media/media_stream_audio_sink_owner.cc', 641 'renderer/media/media_stream_audio_sink_owner.cc',
640 'renderer/media/media_stream_audio_sink_owner.h', 642 'renderer/media/media_stream_audio_sink_owner.h',
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
793 ], 795 ],
794 }], 796 }],
795 ['OS=="win" and win_use_allocator_shim==1', { 797 ['OS=="win" and win_use_allocator_shim==1', {
796 'dependencies': [ 798 'dependencies': [
797 '../base/allocator/allocator.gyp:allocator', 799 '../base/allocator/allocator.gyp:allocator',
798 ], 800 ],
799 }], 801 }],
800 ['OS=="android"', { 802 ['OS=="android"', {
801 'sources!': [ 803 'sources!': [
802 'renderer/media/audio_decoder.cc', 804 'renderer/media/audio_decoder.cc',
805 'renderer/media/audio_track_recorder.cc',
806 'renderer/media/audio_track_recorder.h',
803 'renderer/media/media_recorder_handler.cc', 807 'renderer/media/media_recorder_handler.cc',
804 'renderer/media/media_recorder_handler.h', 808 'renderer/media/media_recorder_handler.h',
805 'renderer/media/video_track_recorder.cc', 809 'renderer/media/video_track_recorder.cc',
806 'renderer/media/video_track_recorder.h', 810 'renderer/media/video_track_recorder.h',
807 'renderer/usb/type_converters.cc', 811 'renderer/usb/type_converters.cc',
808 'renderer/usb/type_converters.h', 812 'renderer/usb/type_converters.h',
809 'renderer/usb/web_usb_client_impl.cc', 813 'renderer/usb/web_usb_client_impl.cc',
810 'renderer/usb/web_usb_client_impl.h', 814 'renderer/usb/web_usb_client_impl.h',
811 'renderer/usb/web_usb_device_impl.cc', 815 'renderer/usb/web_usb_device_impl.cc',
812 'renderer/usb/web_usb_device_impl.h', 816 'renderer/usb/web_usb_device_impl.h',
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
925 }], 929 }],
926 ], 930 ],
927 'target_conditions': [ 931 'target_conditions': [
928 ['OS=="android"', { 932 ['OS=="android"', {
929 'sources/': [ 933 'sources/': [
930 ['include', '^renderer/render_view_linux\\.cc$'], 934 ['include', '^renderer/render_view_linux\\.cc$'],
931 ], 935 ],
932 }], 936 }],
933 ], 937 ],
934 } 938 }
OLDNEW
« no previous file with comments | « no previous file | content/content_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698