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

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

Issue 2529943002: Revert of Reland "Move smoothing filter to common audio". (Closed)
Patch Set: 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 691 matching lines...) Expand 10 before | Expand all | Expand 10 after
702 "codecs/opus/opus_inst.h", 702 "codecs/opus/opus_inst.h",
703 "codecs/opus/opus_interface.c", 703 "codecs/opus/opus_interface.c",
704 "codecs/opus/opus_interface.h", 704 "codecs/opus/opus_interface.h",
705 ] 705 ]
706 706
707 deps = [ 707 deps = [
708 ":audio_decoder_interface", 708 ":audio_decoder_interface",
709 ":audio_encoder_interface", 709 ":audio_encoder_interface",
710 ":audio_network_adaptor", 710 ":audio_network_adaptor",
711 "../../base:rtc_base_approved", 711 "../../base:rtc_base_approved",
712 "../../base/analytics:rtc_analytics",
713 ] 712 ]
714 713
715 defines = [] 714 defines = []
716 715
717 if (rtc_build_opus) { 716 if (rtc_build_opus) {
718 public_deps = [ 717 public_deps = [
719 rtc_opus_dir, 718 rtc_opus_dir,
720 ] 719 ]
721 if (rtc_opus_variable_complexity) { 720 if (rtc_opus_variable_complexity) {
722 defines += [ "WEBRTC_OPUS_VARIABLE_COMPLEXITY=1" ] 721 defines += [ "WEBRTC_OPUS_VARIABLE_COMPLEXITY=1" ]
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
758 "audio_network_adaptor/controller_manager.h", 757 "audio_network_adaptor/controller_manager.h",
759 "audio_network_adaptor/debug_dump_writer.cc", 758 "audio_network_adaptor/debug_dump_writer.cc",
760 "audio_network_adaptor/debug_dump_writer.h", 759 "audio_network_adaptor/debug_dump_writer.h",
761 "audio_network_adaptor/dtx_controller.cc", 760 "audio_network_adaptor/dtx_controller.cc",
762 "audio_network_adaptor/dtx_controller.h", 761 "audio_network_adaptor/dtx_controller.h",
763 "audio_network_adaptor/fec_controller.cc", 762 "audio_network_adaptor/fec_controller.cc",
764 "audio_network_adaptor/fec_controller.h", 763 "audio_network_adaptor/fec_controller.h",
765 "audio_network_adaptor/frame_length_controller.cc", 764 "audio_network_adaptor/frame_length_controller.cc",
766 "audio_network_adaptor/frame_length_controller.h", 765 "audio_network_adaptor/frame_length_controller.h",
767 "audio_network_adaptor/include/audio_network_adaptor.h", 766 "audio_network_adaptor/include/audio_network_adaptor.h",
767 "audio_network_adaptor/smoothing_filter.cc",
768 "audio_network_adaptor/smoothing_filter.h",
768 ] 769 ]
769 770
770 deps = [ 771 deps = [
771 "../..:webrtc_common", 772 "../..:webrtc_common",
772 "../../system_wrappers", 773 "../../system_wrappers",
773 ] 774 ]
774 775
775 if (rtc_enable_protobuf) { 776 if (rtc_enable_protobuf) {
776 deps += [ 777 deps += [
777 ":ana_config_proto", 778 ":ana_config_proto",
(...skipping 904 matching lines...) Expand 10 before | Expand all | Expand 10 after
1682 "../../test:test_support_main", 1683 "../../test:test_support_main",
1683 "//testing/gtest", 1684 "//testing/gtest",
1684 ] 1685 ]
1685 1686
1686 if (!build_with_chromium && is_clang) { 1687 if (!build_with_chromium && is_clang) {
1687 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 1688 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
1688 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 1689 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
1689 } 1690 }
1690 } 1691 }
1691 } 1692 }
OLDNEW
« no previous file with comments | « webrtc/modules/BUILD.gn ('k') | webrtc/modules/audio_coding/audio_network_adaptor/fec_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698