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

Side by Side Diff: content/content_renderer.gypi

Issue 1313603004: MediaRecorderHandler (video part) and unittests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved DCHECK_EQ() Created 5 years, 3 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 | « 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 577 matching lines...) Expand 10 before | Expand all | Expand 10 after
588 'public/renderer/media_stream_audio_sink.h', 588 'public/renderer/media_stream_audio_sink.h',
589 'public/renderer/media_stream_renderer_factory.h', 589 'public/renderer/media_stream_renderer_factory.h',
590 'public/renderer/media_stream_sink.h', 590 'public/renderer/media_stream_sink.h',
591 'public/renderer/media_stream_video_sink.cc', 591 'public/renderer/media_stream_video_sink.cc',
592 'public/renderer/media_stream_video_sink.h', 592 'public/renderer/media_stream_video_sink.h',
593 'public/renderer/webrtc_log_message_delegate.h', 593 'public/renderer/webrtc_log_message_delegate.h',
594 ], 594 ],
595 # WebRTC-specific sources. Put WebRTC plugin-related stuff in the 595 # WebRTC-specific sources. Put WebRTC plugin-related stuff in the
596 # Plugin+WebRTC section below. 596 # Plugin+WebRTC section below.
597 'private_renderer_webrtc_sources': [ 597 'private_renderer_webrtc_sources': [
598 'renderer/media/media_recorder_handler.cc',
599 'renderer/media/media_recorder_handler.h',
598 'renderer/media/media_stream.cc', 600 'renderer/media/media_stream.cc',
599 'renderer/media/media_stream.h', 601 'renderer/media/media_stream.h',
600 'renderer/media/media_stream_audio_processor.cc', 602 'renderer/media/media_stream_audio_processor.cc',
601 'renderer/media/media_stream_audio_processor.h', 603 'renderer/media/media_stream_audio_processor.h',
602 'renderer/media/media_stream_audio_processor_options.cc', 604 'renderer/media/media_stream_audio_processor_options.cc',
603 'renderer/media/media_stream_audio_processor_options.h', 605 'renderer/media/media_stream_audio_processor_options.h',
604 'renderer/media/media_stream_audio_sink_owner.cc', 606 'renderer/media/media_stream_audio_sink_owner.cc',
605 'renderer/media/media_stream_audio_sink_owner.h', 607 'renderer/media/media_stream_audio_sink_owner.h',
606 'renderer/media/media_stream_audio_source.cc', 608 'renderer/media/media_stream_audio_source.cc',
607 'renderer/media/media_stream_audio_source.h', 609 'renderer/media/media_stream_audio_source.h',
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
748 ], 750 ],
749 }], 751 }],
750 ['OS=="win" and win_use_allocator_shim==1', { 752 ['OS=="win" and win_use_allocator_shim==1', {
751 'dependencies': [ 753 'dependencies': [
752 '../base/allocator/allocator.gyp:allocator', 754 '../base/allocator/allocator.gyp:allocator',
753 ], 755 ],
754 }], 756 }],
755 ['OS=="android"', { 757 ['OS=="android"', {
756 'sources!': [ 758 'sources!': [
757 'renderer/media/audio_decoder.cc', 759 'renderer/media/audio_decoder.cc',
760 'renderer/media/video_track_recorder.cc',
761 'renderer/media/video_track_recorder.h',
762 'renderer/media/media_recorder_handler.cc',
763 'renderer/media/media_recorder_handler.h',
758 'renderer/usb/type_converters.cc', 764 'renderer/usb/type_converters.cc',
759 'renderer/usb/type_converters.h', 765 'renderer/usb/type_converters.h',
760 'renderer/usb/web_usb_client_impl.cc', 766 'renderer/usb/web_usb_client_impl.cc',
761 'renderer/usb/web_usb_client_impl.h', 767 'renderer/usb/web_usb_client_impl.h',
762 'renderer/usb/web_usb_device_impl.cc', 768 'renderer/usb/web_usb_device_impl.cc',
763 'renderer/usb/web_usb_device_impl.h', 769 'renderer/usb/web_usb_device_impl.h',
764 ], 770 ],
765 'sources': [ 771 'sources': [
766 'renderer/external_popup_menu.cc', 772 'renderer/external_popup_menu.cc',
767 'renderer/external_popup_menu.h', 773 'renderer/external_popup_menu.h',
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
882 }], 888 }],
883 ], 889 ],
884 'target_conditions': [ 890 'target_conditions': [
885 ['OS=="android"', { 891 ['OS=="android"', {
886 'sources/': [ 892 'sources/': [
887 ['include', '^renderer/render_view_linux\\.cc$'], 893 ['include', '^renderer/render_view_linux\\.cc$'],
888 ], 894 ],
889 }], 895 }],
890 ], 896 ],
891 } 897 }
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