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

Side by Side Diff: webrtc/modules/audio_coding/BUILD.gn

Issue 2559953002: Log audio network adapter decisions in event log. (Closed)
Patch Set: Log Ana Created 4 years 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) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 import("../../build/webrtc.gni") 9 import("../../build/webrtc.gni")
10 import("audio_coding.gni") 10 import("audio_coding.gni")
(...skipping 831 matching lines...) Expand 10 before | Expand all | Expand 10 after
842 "audio_network_adaptor/channel_controller.cc", 842 "audio_network_adaptor/channel_controller.cc",
843 "audio_network_adaptor/channel_controller.h", 843 "audio_network_adaptor/channel_controller.h",
844 "audio_network_adaptor/controller.cc", 844 "audio_network_adaptor/controller.cc",
845 "audio_network_adaptor/controller.h", 845 "audio_network_adaptor/controller.h",
846 "audio_network_adaptor/controller_manager.cc", 846 "audio_network_adaptor/controller_manager.cc",
847 "audio_network_adaptor/controller_manager.h", 847 "audio_network_adaptor/controller_manager.h",
848 "audio_network_adaptor/debug_dump_writer.cc", 848 "audio_network_adaptor/debug_dump_writer.cc",
849 "audio_network_adaptor/debug_dump_writer.h", 849 "audio_network_adaptor/debug_dump_writer.h",
850 "audio_network_adaptor/dtx_controller.cc", 850 "audio_network_adaptor/dtx_controller.cc",
851 "audio_network_adaptor/dtx_controller.h", 851 "audio_network_adaptor/dtx_controller.h",
852 "audio_network_adaptor/event_log_writer.cc",
853 "audio_network_adaptor/event_log_writer.h",
852 "audio_network_adaptor/fec_controller.cc", 854 "audio_network_adaptor/fec_controller.cc",
853 "audio_network_adaptor/fec_controller.h", 855 "audio_network_adaptor/fec_controller.h",
854 "audio_network_adaptor/frame_length_controller.cc", 856 "audio_network_adaptor/frame_length_controller.cc",
855 "audio_network_adaptor/frame_length_controller.h", 857 "audio_network_adaptor/frame_length_controller.h",
856 "audio_network_adaptor/include/audio_network_adaptor.h", 858 "audio_network_adaptor/include/audio_network_adaptor.h",
857 ] 859 ]
858 860
859 deps = [ 861 deps = [
860 "../..:webrtc_common", 862 "../..:webrtc_common",
863 "../../logging:rtc_event_log_api",
861 "../../system_wrappers", 864 "../../system_wrappers",
862 ] 865 ]
863 866
864 if (rtc_enable_protobuf) { 867 if (rtc_enable_protobuf) {
865 deps += [ 868 deps += [
866 ":ana_config_proto", 869 ":ana_config_proto",
867 ":ana_debug_dump_proto", 870 ":ana_debug_dump_proto",
868 ] 871 ]
869 defines = [ "WEBRTC_AUDIO_NETWORK_ADAPTOR_DEBUG_DUMP" ] 872 defines = [ "WEBRTC_AUDIO_NETWORK_ADAPTOR_DEBUG_DUMP" ]
870 } 873 }
874
875 if (!build_with_chromium && is_clang) {
876 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
877 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
878 }
871 } 879 }
872 880
873 config("neteq_config") { 881 config("neteq_config") {
874 include_dirs = [ 882 include_dirs = [
875 # Need Opus header files for the audio classifier. 883 # Need Opus header files for the audio classifier.
876 "//third_party/opus/src/celt", 884 "//third_party/opus/src/celt",
877 "//third_party/opus/src/src", 885 "//third_party/opus/src/src",
878 ] 886 ]
879 } 887 }
880 888
(...skipping 897 matching lines...) Expand 10 before | Expand all | Expand 10 after
1778 "../../test:test_support", 1786 "../../test:test_support",
1779 "//testing/gtest", 1787 "//testing/gtest",
1780 ] 1788 ]
1781 1789
1782 if (!build_with_chromium && is_clang) { 1790 if (!build_with_chromium && is_clang) {
1783 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 1791 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
1784 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 1792 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
1785 } 1793 }
1786 } 1794 }
1787 } 1795 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698