OLD | NEW |
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 689 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
700 | 700 |
701 source_set("audio_network_adaptor") { | 701 source_set("audio_network_adaptor") { |
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/controller.cc", | 706 "audio_network_adaptor/controller.cc", |
707 "audio_network_adaptor/controller.h", | 707 "audio_network_adaptor/controller.h", |
708 "audio_network_adaptor/controller_manager.cc", | 708 "audio_network_adaptor/controller_manager.cc", |
709 "audio_network_adaptor/controller_manager.h", | 709 "audio_network_adaptor/controller_manager.h", |
| 710 "audio_network_adaptor/dtx_controller.cc", |
| 711 "audio_network_adaptor/dtx_controller.h", |
710 "audio_network_adaptor/include/audio_network_adaptor.h", | 712 "audio_network_adaptor/include/audio_network_adaptor.h", |
711 ] | 713 ] |
712 configs += [ "../..:common_config" ] | 714 configs += [ "../..:common_config" ] |
713 public_configs = [ "../..:common_inherited_config" ] | 715 public_configs = [ "../..:common_inherited_config" ] |
714 } | 716 } |
715 | 717 |
716 config("neteq_config") { | 718 config("neteq_config") { |
717 include_dirs = [ | 719 include_dirs = [ |
718 # Need Opus header files for the audio classifier. | 720 # Need Opus header files for the audio classifier. |
719 "//third_party/opus/src/celt", | 721 "//third_party/opus/src/celt", |
(...skipping 845 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1565 "//testing/gtest", | 1567 "//testing/gtest", |
1566 ] | 1568 ] |
1567 | 1569 |
1568 if (is_clang) { | 1570 if (is_clang) { |
1569 # Suppress warnings from Chrome's Clang plugins. | 1571 # Suppress warnings from Chrome's Clang plugins. |
1570 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 1572 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
1571 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 1573 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
1572 } | 1574 } |
1573 } | 1575 } |
1574 } | 1576 } |
OLD | NEW |