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

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

Issue 2319543002: WebRTCStats added for surfacing RTCStats from WebRTC to Blink. (Closed)
Patch Set: Addressed comments Created 4 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/renderer/media/webrtc/rtc_stats.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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//media/media_options.gni") 7 import("//media/media_options.gni")
8 import("//third_party/webrtc/build/webrtc.gni") 8 import("//third_party/webrtc/build/webrtc.gni")
9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") 9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni")
10 10
(...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after
606 "media/webrtc/media_stream_track_metrics.cc", 606 "media/webrtc/media_stream_track_metrics.cc",
607 "media/webrtc/media_stream_track_metrics.h", 607 "media/webrtc/media_stream_track_metrics.h",
608 "media/webrtc/media_stream_video_webrtc_sink.cc", 608 "media/webrtc/media_stream_video_webrtc_sink.cc",
609 "media/webrtc/media_stream_video_webrtc_sink.h", 609 "media/webrtc/media_stream_video_webrtc_sink.h",
610 "media/webrtc/peer_connection_dependency_factory.cc", 610 "media/webrtc/peer_connection_dependency_factory.cc",
611 "media/webrtc/peer_connection_dependency_factory.h", 611 "media/webrtc/peer_connection_dependency_factory.h",
612 "media/webrtc/peer_connection_remote_audio_source.cc", 612 "media/webrtc/peer_connection_remote_audio_source.cc",
613 "media/webrtc/peer_connection_remote_audio_source.h", 613 "media/webrtc/peer_connection_remote_audio_source.h",
614 "media/webrtc/processed_local_audio_source.cc", 614 "media/webrtc/processed_local_audio_source.cc",
615 "media/webrtc/processed_local_audio_source.h", 615 "media/webrtc/processed_local_audio_source.h",
616 "media/webrtc/rtc_stats.cc",
617 "media/webrtc/rtc_stats.h",
616 "media/webrtc/stun_field_trial.cc", 618 "media/webrtc/stun_field_trial.cc",
617 "media/webrtc/stun_field_trial.h", 619 "media/webrtc/stun_field_trial.h",
618 "media/webrtc/track_observer.cc", 620 "media/webrtc/track_observer.cc",
619 "media/webrtc/track_observer.h", 621 "media/webrtc/track_observer.h",
620 "media/webrtc/webrtc_audio_sink.cc", 622 "media/webrtc/webrtc_audio_sink.cc",
621 "media/webrtc/webrtc_audio_sink.h", 623 "media/webrtc/webrtc_audio_sink.h",
622 "media/webrtc/webrtc_media_stream_adapter.cc", 624 "media/webrtc/webrtc_media_stream_adapter.cc",
623 "media/webrtc/webrtc_media_stream_adapter.h", 625 "media/webrtc/webrtc_media_stream_adapter.h",
624 "media/webrtc/webrtc_video_capturer_adapter.cc", 626 "media/webrtc/webrtc_video_capturer_adapter.cc",
625 "media/webrtc/webrtc_video_capturer_adapter.h", 627 "media/webrtc/webrtc_video_capturer_adapter.h",
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
684 "//third_party/webrtc/api:libjingle_peerconnection", 686 "//third_party/webrtc/api:libjingle_peerconnection",
685 "//third_party/webrtc/base:rtc_base", 687 "//third_party/webrtc/base:rtc_base",
686 "//third_party/webrtc/common_video", 688 "//third_party/webrtc/common_video",
687 "//third_party/webrtc/media:rtc_media", 689 "//third_party/webrtc/media:rtc_media",
688 "//third_party/webrtc/modules/audio_device", 690 "//third_party/webrtc/modules/audio_device",
689 "//third_party/webrtc/modules/audio_processing", 691 "//third_party/webrtc/modules/audio_processing",
690 "//third_party/webrtc/modules/video_coding:webrtc_h264", 692 "//third_party/webrtc/modules/video_coding:webrtc_h264",
691 "//third_party/webrtc/p2p:libstunprober", 693 "//third_party/webrtc/p2p:libstunprober",
692 "//third_party/webrtc/p2p:rtc_p2p", 694 "//third_party/webrtc/p2p:rtc_p2p",
693 "//third_party/webrtc/pc:rtc_pc", 695 "//third_party/webrtc/pc:rtc_pc",
696 "//third_party/webrtc/stats",
694 "//third_party/webrtc/system_wrappers", 697 "//third_party/webrtc/system_wrappers",
695 ] 698 ]
696 if (rtc_use_h264) { 699 if (rtc_use_h264) {
697 deps += [ "//third_party/openh264:encoder" ] 700 deps += [ "//third_party/openh264:encoder" ]
698 } 701 }
699 } else { 702 } else {
700 sources += [ 703 sources += [
701 "media/webrtc_logging.h", 704 "media/webrtc_logging.h",
702 "media/webrtc_logging_noop.cc", 705 "media/webrtc_logging_noop.cc",
703 ] 706 ]
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
907 # For the defines in mojo_media_config. 910 # For the defines in mojo_media_config.
908 public_configs = [ "//media/mojo/services:mojo_media_config" ] 911 public_configs = [ "//media/mojo/services:mojo_media_config" ]
909 } 912 }
910 913
911 if (!is_component_build) { 914 if (!is_component_build) {
912 public_deps = [ 915 public_deps = [
913 ":renderer", 916 ":renderer",
914 ] 917 ]
915 } 918 }
916 } 919 }
OLDNEW
« no previous file with comments | « no previous file | content/renderer/media/webrtc/rtc_stats.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698