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

Side by Side Diff: content/renderer/BUILD.gn

Issue 2793303003: Refactor VideoTrackRecorder into smaller classes (Closed)
Patch Set: Rebase Created 3 years, 8 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/renderer/media_recorder/h264_encoder.h » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/chromecast_build.gni") 5 import("//build/config/chromecast_build.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/split_static_library.gni") 8 import("//build/split_static_library.gni")
9 import("//content/common/features.gni") 9 import("//content/common/features.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 672 matching lines...) Expand 10 before | Expand all | Expand 10 after
683 "media_capture_from_element/canvas_capture_handler.cc", 683 "media_capture_from_element/canvas_capture_handler.cc",
684 "media_capture_from_element/canvas_capture_handler.h", 684 "media_capture_from_element/canvas_capture_handler.h",
685 "media_capture_from_element/html_audio_element_capturer_source.cc", 685 "media_capture_from_element/html_audio_element_capturer_source.cc",
686 "media_capture_from_element/html_audio_element_capturer_source.h", 686 "media_capture_from_element/html_audio_element_capturer_source.h",
687 "media_capture_from_element/html_video_element_capturer_source.cc", 687 "media_capture_from_element/html_video_element_capturer_source.cc",
688 "media_capture_from_element/html_video_element_capturer_source.h", 688 "media_capture_from_element/html_video_element_capturer_source.h",
689 "media_recorder/audio_track_recorder.cc", 689 "media_recorder/audio_track_recorder.cc",
690 "media_recorder/audio_track_recorder.h", 690 "media_recorder/audio_track_recorder.h",
691 "media_recorder/media_recorder_handler.cc", 691 "media_recorder/media_recorder_handler.cc",
692 "media_recorder/media_recorder_handler.h", 692 "media_recorder/media_recorder_handler.h",
693 "media_recorder/vea_encoder.cc",
694 "media_recorder/vea_encoder.h",
693 "media_recorder/video_track_recorder.cc", 695 "media_recorder/video_track_recorder.cc",
694 "media_recorder/video_track_recorder.h", 696 "media_recorder/video_track_recorder.h",
697 "media_recorder/vpx_encoder.cc",
698 "media_recorder/vpx_encoder.h",
695 "p2p/empty_network_manager.cc", 699 "p2p/empty_network_manager.cc",
696 "p2p/empty_network_manager.h", 700 "p2p/empty_network_manager.h",
697 "p2p/filtering_network_manager.cc", 701 "p2p/filtering_network_manager.cc",
698 "p2p/filtering_network_manager.h", 702 "p2p/filtering_network_manager.h",
699 "p2p/host_address_request.cc", 703 "p2p/host_address_request.cc",
700 "p2p/host_address_request.h", 704 "p2p/host_address_request.h",
701 "p2p/ipc_network_manager.cc", 705 "p2p/ipc_network_manager.cc",
702 "p2p/ipc_network_manager.h", 706 "p2p/ipc_network_manager.h",
703 "p2p/ipc_socket_factory.cc", 707 "p2p/ipc_socket_factory.cc",
704 "p2p/ipc_socket_factory.h", 708 "p2p/ipc_socket_factory.h",
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
746 "//third_party/webrtc/modules/audio_processing", 750 "//third_party/webrtc/modules/audio_processing",
747 "//third_party/webrtc/modules/video_coding:webrtc_h264", 751 "//third_party/webrtc/modules/video_coding:webrtc_h264",
748 "//third_party/webrtc/p2p:libstunprober", 752 "//third_party/webrtc/p2p:libstunprober",
749 "//third_party/webrtc/p2p:rtc_p2p", 753 "//third_party/webrtc/p2p:rtc_p2p",
750 "//third_party/webrtc/pc:rtc_pc", 754 "//third_party/webrtc/pc:rtc_pc",
751 "//third_party/webrtc/stats", 755 "//third_party/webrtc/stats",
752 "//third_party/webrtc/system_wrappers", 756 "//third_party/webrtc/system_wrappers",
753 "//third_party/webrtc_overrides:init_webrtc", 757 "//third_party/webrtc_overrides:init_webrtc",
754 ] 758 ]
755 if (rtc_use_h264) { 759 if (rtc_use_h264) {
760 sources += [
761 "media_recorder/h264_encoder.cc",
762 "media_recorder/h264_encoder.h",
763 ]
756 deps += [ "//third_party/openh264:encoder" ] 764 deps += [ "//third_party/openh264:encoder" ]
757 } 765 }
758 } else { 766 } else {
759 sources += [ 767 sources += [
760 "media/webrtc_logging.h", 768 "media/webrtc_logging.h",
761 "media/webrtc_logging_noop.cc", 769 "media/webrtc_logging_noop.cc",
762 ] 770 ]
763 } 771 }
764 772
765 if (enable_plugins) { 773 if (enable_plugins) {
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
965 # For the defines in mojo_media_config. 973 # For the defines in mojo_media_config.
966 public_configs = [ "//media/mojo/services:mojo_media_config" ] 974 public_configs = [ "//media/mojo/services:mojo_media_config" ]
967 } 975 }
968 976
969 if (!is_component_build) { 977 if (!is_component_build) {
970 public_deps = [ 978 public_deps = [
971 ":renderer", 979 ":renderer",
972 ] 980 ]
973 } 981 }
974 } 982 }
OLDNEW
« no previous file with comments | « no previous file | content/renderer/media_recorder/h264_encoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698