| 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 690 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 701 "codecs/opus/audio_encoder_opus.h", | 701 "codecs/opus/audio_encoder_opus.h", |
| 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_analytics", |
| 711 "../../base:rtc_base_approved", | 712 "../../base:rtc_base_approved", |
| 712 ] | 713 ] |
| 713 | 714 |
| 714 defines = [] | 715 defines = [] |
| 715 | 716 |
| 716 if (rtc_build_opus) { | 717 if (rtc_build_opus) { |
| 717 public_deps = [ | 718 public_deps = [ |
| 718 rtc_opus_dir, | 719 rtc_opus_dir, |
| 719 ] | 720 ] |
| 720 if (rtc_opus_variable_complexity) { | 721 if (rtc_opus_variable_complexity) { |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 757 "audio_network_adaptor/controller_manager.h", | 758 "audio_network_adaptor/controller_manager.h", |
| 758 "audio_network_adaptor/debug_dump_writer.cc", | 759 "audio_network_adaptor/debug_dump_writer.cc", |
| 759 "audio_network_adaptor/debug_dump_writer.h", | 760 "audio_network_adaptor/debug_dump_writer.h", |
| 760 "audio_network_adaptor/dtx_controller.cc", | 761 "audio_network_adaptor/dtx_controller.cc", |
| 761 "audio_network_adaptor/dtx_controller.h", | 762 "audio_network_adaptor/dtx_controller.h", |
| 762 "audio_network_adaptor/fec_controller.cc", | 763 "audio_network_adaptor/fec_controller.cc", |
| 763 "audio_network_adaptor/fec_controller.h", | 764 "audio_network_adaptor/fec_controller.h", |
| 764 "audio_network_adaptor/frame_length_controller.cc", | 765 "audio_network_adaptor/frame_length_controller.cc", |
| 765 "audio_network_adaptor/frame_length_controller.h", | 766 "audio_network_adaptor/frame_length_controller.h", |
| 766 "audio_network_adaptor/include/audio_network_adaptor.h", | 767 "audio_network_adaptor/include/audio_network_adaptor.h", |
| 767 "audio_network_adaptor/smoothing_filter.cc", | |
| 768 "audio_network_adaptor/smoothing_filter.h", | |
| 769 ] | 768 ] |
| 770 | 769 |
| 771 deps = [ | 770 deps = [ |
| 772 "../..:webrtc_common", | 771 "../..:webrtc_common", |
| 773 "../../system_wrappers", | 772 "../../system_wrappers", |
| 774 ] | 773 ] |
| 775 | 774 |
| 776 if (rtc_enable_protobuf) { | 775 if (rtc_enable_protobuf) { |
| 777 deps += [ | 776 deps += [ |
| 778 ":ana_config_proto", | 777 ":ana_config_proto", |
| (...skipping 904 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1683 "../../test:test_support_main", | 1682 "../../test:test_support_main", |
| 1684 "//testing/gtest", | 1683 "//testing/gtest", |
| 1685 ] | 1684 ] |
| 1686 | 1685 |
| 1687 if (!build_with_chromium && is_clang) { | 1686 if (!build_with_chromium && is_clang) { |
| 1688 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 1687 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 1689 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 1688 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 1690 } | 1689 } |
| 1691 } | 1690 } |
| 1692 } | 1691 } |
| OLD | NEW |