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

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: Created 5 years, 2 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
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 589 matching lines...) Expand 10 before | Expand all | Expand 10 after
600 'public/renderer/media_stream_audio_sink.h', 600 'public/renderer/media_stream_audio_sink.h',
601 'public/renderer/media_stream_renderer_factory.h', 601 'public/renderer/media_stream_renderer_factory.h',
602 'public/renderer/media_stream_sink.h', 602 'public/renderer/media_stream_sink.h',
603 'public/renderer/media_stream_video_sink.cc', 603 'public/renderer/media_stream_video_sink.cc',
604 'public/renderer/media_stream_video_sink.h', 604 'public/renderer/media_stream_video_sink.h',
605 'public/renderer/webrtc_log_message_delegate.h', 605 'public/renderer/webrtc_log_message_delegate.h',
606 ], 606 ],
607 # WebRTC-specific sources. Put WebRTC plugin-related stuff in the 607 # WebRTC-specific sources. Put WebRTC plugin-related stuff in the
608 # Plugin+WebRTC section below. 608 # Plugin+WebRTC section below.
609 'private_renderer_webrtc_sources': [ 609 'private_renderer_webrtc_sources': [
610 'renderer/media/audio_track_recorder.cc',
611 'renderer/media/audio_track_recorder.h',
610 'renderer/media/media_recorder_handler.cc', 612 'renderer/media/media_recorder_handler.cc',
611 'renderer/media/media_recorder_handler.h', 613 'renderer/media/media_recorder_handler.h',
612 'renderer/media/media_stream.cc', 614 'renderer/media/media_stream.cc',
613 'renderer/media/media_stream.h', 615 'renderer/media/media_stream.h',
614 'renderer/media/media_stream_audio_processor.cc', 616 'renderer/media/media_stream_audio_processor.cc',
615 'renderer/media/media_stream_audio_processor.h', 617 'renderer/media/media_stream_audio_processor.h',
616 'renderer/media/media_stream_audio_processor_options.cc', 618 'renderer/media/media_stream_audio_processor_options.cc',
617 'renderer/media/media_stream_audio_processor_options.h', 619 'renderer/media/media_stream_audio_processor_options.h',
618 'renderer/media/media_stream_audio_sink_owner.cc', 620 'renderer/media/media_stream_audio_sink_owner.cc',
619 'renderer/media/media_stream_audio_sink_owner.h', 621 'renderer/media/media_stream_audio_sink_owner.h',
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
768 ], 770 ],
769 }], 771 }],
770 ['OS=="win" and win_use_allocator_shim==1', { 772 ['OS=="win" and win_use_allocator_shim==1', {
771 'dependencies': [ 773 'dependencies': [
772 '../base/allocator/allocator.gyp:allocator', 774 '../base/allocator/allocator.gyp:allocator',
773 ], 775 ],
774 }], 776 }],
775 ['OS=="android"', { 777 ['OS=="android"', {
776 'sources!': [ 778 'sources!': [
777 'renderer/media/audio_decoder.cc', 779 'renderer/media/audio_decoder.cc',
780 'renderer/media/audio_track_recorder.cc',
781 'renderer/media/audio_track_recorder.h',
778 'renderer/media/media_recorder_handler.cc', 782 'renderer/media/media_recorder_handler.cc',
779 'renderer/media/media_recorder_handler.h', 783 'renderer/media/media_recorder_handler.h',
780 'renderer/media/video_track_recorder.cc', 784 'renderer/media/video_track_recorder.cc',
781 'renderer/media/video_track_recorder.h', 785 'renderer/media/video_track_recorder.h',
782 'renderer/usb/type_converters.cc', 786 'renderer/usb/type_converters.cc',
783 'renderer/usb/type_converters.h', 787 'renderer/usb/type_converters.h',
784 'renderer/usb/web_usb_client_impl.cc', 788 'renderer/usb/web_usb_client_impl.cc',
785 'renderer/usb/web_usb_client_impl.h', 789 'renderer/usb/web_usb_client_impl.h',
786 'renderer/usb/web_usb_device_impl.cc', 790 'renderer/usb/web_usb_device_impl.cc',
787 'renderer/usb/web_usb_device_impl.h', 791 'renderer/usb/web_usb_device_impl.h',
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
901 }], 905 }],
902 ], 906 ],
903 'target_conditions': [ 907 'target_conditions': [
904 ['OS=="android"', { 908 ['OS=="android"', {
905 'sources/': [ 909 'sources/': [
906 ['include', '^renderer/render_view_linux\\.cc$'], 910 ['include', '^renderer/render_view_linux\\.cc$'],
907 ], 911 ],
908 }], 912 }],
909 ], 913 ],
910 } 914 }
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