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

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

Issue 2362003002: Revert of Adding debug dump to audio network adaptor. (Closed)
Patch Set: Created 4 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
« no previous file with comments | « no previous file | webrtc/modules/audio_coding/audio_network_adaptor/audio_network_adaptor.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) 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 691 matching lines...) Expand 10 before | Expand all | Expand 10 after
702 "audio_network_adaptor/audio_network_adaptor_impl.cc", 702 "audio_network_adaptor/audio_network_adaptor_impl.cc",
703 "audio_network_adaptor/audio_network_adaptor_impl.h", 703 "audio_network_adaptor/audio_network_adaptor_impl.h",
704 "audio_network_adaptor/bitrate_controller.cc", 704 "audio_network_adaptor/bitrate_controller.cc",
705 "audio_network_adaptor/bitrate_controller.h", 705 "audio_network_adaptor/bitrate_controller.h",
706 "audio_network_adaptor/channel_controller.cc", 706 "audio_network_adaptor/channel_controller.cc",
707 "audio_network_adaptor/channel_controller.h", 707 "audio_network_adaptor/channel_controller.h",
708 "audio_network_adaptor/controller.cc", 708 "audio_network_adaptor/controller.cc",
709 "audio_network_adaptor/controller.h", 709 "audio_network_adaptor/controller.h",
710 "audio_network_adaptor/controller_manager.cc", 710 "audio_network_adaptor/controller_manager.cc",
711 "audio_network_adaptor/controller_manager.h", 711 "audio_network_adaptor/controller_manager.h",
712 "audio_network_adaptor/debug_dump_writer.cc",
713 "audio_network_adaptor/debug_dump_writer.h",
714 "audio_network_adaptor/dtx_controller.cc", 712 "audio_network_adaptor/dtx_controller.cc",
715 "audio_network_adaptor/dtx_controller.h", 713 "audio_network_adaptor/dtx_controller.h",
716 "audio_network_adaptor/frame_length_controller.cc", 714 "audio_network_adaptor/frame_length_controller.cc",
717 "audio_network_adaptor/frame_length_controller.h", 715 "audio_network_adaptor/frame_length_controller.h",
718 "audio_network_adaptor/include/audio_network_adaptor.h", 716 "audio_network_adaptor/include/audio_network_adaptor.h",
719 "audio_network_adaptor/smoothing_filter.cc", 717 "audio_network_adaptor/smoothing_filter.cc",
720 "audio_network_adaptor/smoothing_filter.h", 718 "audio_network_adaptor/smoothing_filter.h",
721 ] 719 ]
722 configs += [ "../..:common_config" ] 720 configs += [ "../..:common_config" ]
723 public_configs = [ "../..:common_inherited_config" ] 721 public_configs = [ "../..:common_inherited_config" ]
724
725 if (rtc_enable_protobuf) {
726 deps = [
727 ":ana_debug_dump_proto",
728 ]
729 defines = [ "WEBRTC_AUDIO_NETWORK_ADAPTOR_DEBUG_DUMP" ]
730 }
731 } 722 }
732 723
733 config("neteq_config") { 724 config("neteq_config") {
734 include_dirs = [ 725 include_dirs = [
735 # Need Opus header files for the audio classifier. 726 # Need Opus header files for the audio classifier.
736 "//third_party/opus/src/celt", 727 "//third_party/opus/src/celt",
737 "//third_party/opus/src/src", 728 "//third_party/opus/src/src",
738 ] 729 ]
739 } 730 }
740 731
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
977 if (is_android) { 968 if (is_android) {
978 deps += [ "//testing/android/native_test:native_test_native_code" ] 969 deps += [ "//testing/android/native_test:native_test_native_code" ]
979 shard_timeout = 900 970 shard_timeout = 900
980 } 971 }
981 if (is_ios) { 972 if (is_ios) {
982 deps += [ ":audio_decoder_unittests_bundle_data" ] 973 deps += [ ":audio_decoder_unittests_bundle_data" ]
983 } 974 }
984 } # audio_decoder_unittests 975 } # audio_decoder_unittests
985 976
986 if (rtc_enable_protobuf) { 977 if (rtc_enable_protobuf) {
987 proto_library("ana_debug_dump_proto") {
988 sources = [
989 "audio_network_adaptor/debug_dump.proto",
990 ]
991 proto_out_dir = "webrtc/modules/audio_coding/audio_network_adaptor"
992 }
993
994 proto_library("neteq_unittest_proto") { 978 proto_library("neteq_unittest_proto") {
995 sources = [ 979 sources = [
996 "neteq/neteq_unittest.proto", 980 "neteq/neteq_unittest.proto",
997 ] 981 ]
998 proto_out_dir = "webrtc/audio_coding/neteq" 982 proto_out_dir = "webrtc/audio_coding/neteq"
999 } 983 }
1000 984
1001 rtc_source_set("rtc_event_log_source") { 985 rtc_source_set("rtc_event_log_source") {
1002 testonly = true 986 testonly = true
1003 sources = [ 987 sources = [
(...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after
1587 "//testing/gtest", 1571 "//testing/gtest",
1588 ] 1572 ]
1589 1573
1590 if (is_clang) { 1574 if (is_clang) {
1591 # Suppress warnings from Chrome's Clang plugins. 1575 # Suppress warnings from Chrome's Clang plugins.
1592 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 1576 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
1593 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 1577 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
1594 } 1578 }
1595 } 1579 }
1596 } 1580 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_coding/audio_network_adaptor/audio_network_adaptor.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698