| 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 739 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 750 "audio_network_adaptor/controller_manager.h", | 750 "audio_network_adaptor/controller_manager.h", |
| 751 "audio_network_adaptor/debug_dump_writer.cc", | 751 "audio_network_adaptor/debug_dump_writer.cc", |
| 752 "audio_network_adaptor/debug_dump_writer.h", | 752 "audio_network_adaptor/debug_dump_writer.h", |
| 753 "audio_network_adaptor/dtx_controller.cc", | 753 "audio_network_adaptor/dtx_controller.cc", |
| 754 "audio_network_adaptor/dtx_controller.h", | 754 "audio_network_adaptor/dtx_controller.h", |
| 755 "audio_network_adaptor/fec_controller.cc", | 755 "audio_network_adaptor/fec_controller.cc", |
| 756 "audio_network_adaptor/fec_controller.h", | 756 "audio_network_adaptor/fec_controller.h", |
| 757 "audio_network_adaptor/frame_length_controller.cc", | 757 "audio_network_adaptor/frame_length_controller.cc", |
| 758 "audio_network_adaptor/frame_length_controller.h", | 758 "audio_network_adaptor/frame_length_controller.h", |
| 759 "audio_network_adaptor/include/audio_network_adaptor.h", | 759 "audio_network_adaptor/include/audio_network_adaptor.h", |
| 760 "audio_network_adaptor/smoothing_filter.cc", |
| 761 "audio_network_adaptor/smoothing_filter.h", |
| 760 ] | 762 ] |
| 761 | 763 |
| 762 deps = [ | 764 deps = [ |
| 763 "../..:webrtc_common", | 765 "../..:webrtc_common", |
| 764 "../../system_wrappers", | 766 "../../system_wrappers", |
| 765 ] | 767 ] |
| 766 | 768 |
| 767 if (rtc_enable_protobuf) { | 769 if (rtc_enable_protobuf) { |
| 768 deps += [ | 770 deps += [ |
| 769 ":ana_config_proto", | 771 ":ana_config_proto", |
| (...skipping 904 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1674 "../../test:test_support_main", | 1676 "../../test:test_support_main", |
| 1675 "//testing/gtest", | 1677 "//testing/gtest", |
| 1676 ] | 1678 ] |
| 1677 | 1679 |
| 1678 if (!build_with_chromium && is_clang) { | 1680 if (!build_with_chromium && is_clang) { |
| 1679 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 1681 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 1680 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 1682 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 1681 } | 1683 } |
| 1682 } | 1684 } |
| 1683 } | 1685 } |
| OLD | NEW |