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

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

Issue 2337103006: Adding FecController to audio network adaptor. (Closed)
Patch Set: On Henrik's 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
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 sources = [ 702 sources = [
703 "audio_network_adaptor/audio_network_adaptor.cc", 703 "audio_network_adaptor/audio_network_adaptor.cc",
704 "audio_network_adaptor/audio_network_adaptor_impl.cc", 704 "audio_network_adaptor/audio_network_adaptor_impl.cc",
705 "audio_network_adaptor/audio_network_adaptor_impl.h", 705 "audio_network_adaptor/audio_network_adaptor_impl.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/fec_controller.cc",
713 "audio_network_adaptor/fec_controller.h",
712 "audio_network_adaptor/include/audio_network_adaptor.h", 714 "audio_network_adaptor/include/audio_network_adaptor.h",
713 "audio_network_adaptor/smoothing_filter.cc", 715 "audio_network_adaptor/smoothing_filter.cc",
714 "audio_network_adaptor/smoothing_filter.h", 716 "audio_network_adaptor/smoothing_filter.h",
715 ] 717 ]
716 configs += [ "../..:common_config" ] 718 configs += [ "../..:common_config" ]
717 public_configs = [ "../..:common_inherited_config" ] 719 public_configs = [ "../..:common_inherited_config" ]
718 } 720 }
719 721
720 config("neteq_config") { 722 config("neteq_config") {
721 include_dirs = [ 723 include_dirs = [
(...skipping 846 matching lines...) Expand 10 before | Expand all | Expand 10 after
1568 "//testing/gtest", 1570 "//testing/gtest",
1569 ] 1571 ]
1570 1572
1571 if (is_clang) { 1573 if (is_clang) {
1572 # Suppress warnings from Chrome's Clang plugins. 1574 # Suppress warnings from Chrome's Clang plugins.
1573 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 1575 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
1574 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 1576 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
1575 } 1577 }
1576 } 1578 }
1577 } 1579 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698