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 664 matching lines...) Loading... | |
675 "codecs/opus/audio_encoder_opus.cc", | 675 "codecs/opus/audio_encoder_opus.cc", |
676 "codecs/opus/audio_encoder_opus.h", | 676 "codecs/opus/audio_encoder_opus.h", |
677 "codecs/opus/opus_inst.h", | 677 "codecs/opus/opus_inst.h", |
678 "codecs/opus/opus_interface.c", | 678 "codecs/opus/opus_interface.c", |
679 "codecs/opus/opus_interface.h", | 679 "codecs/opus/opus_interface.h", |
680 ] | 680 ] |
681 | 681 |
682 deps = [ | 682 deps = [ |
683 ":audio_decoder_interface", | 683 ":audio_decoder_interface", |
684 ":audio_encoder_interface", | 684 ":audio_encoder_interface", |
685 ":audio_network_adaptor", | |
685 "../../base:rtc_base_approved", | 686 "../../base:rtc_base_approved", |
686 ] | 687 ] |
687 | 688 |
688 if (rtc_build_opus) { | 689 if (rtc_build_opus) { |
689 public_deps = [ | 690 public_deps = [ |
690 rtc_opus_dir, | 691 rtc_opus_dir, |
691 ] | 692 ] |
692 } else if (build_with_mozilla) { | 693 } else if (build_with_mozilla) { |
693 include_dirs = [ getenv("DIST") + "/include/opus" ] | 694 include_dirs = [ getenv("DIST") + "/include/opus" ] |
694 } | 695 } |
(...skipping 35 matching lines...) Loading... | |
730 "audio_network_adaptor/fec_controller.h", | 731 "audio_network_adaptor/fec_controller.h", |
731 "audio_network_adaptor/frame_length_controller.cc", | 732 "audio_network_adaptor/frame_length_controller.cc", |
732 "audio_network_adaptor/frame_length_controller.h", | 733 "audio_network_adaptor/frame_length_controller.h", |
733 "audio_network_adaptor/include/audio_network_adaptor.h", | 734 "audio_network_adaptor/include/audio_network_adaptor.h", |
734 "audio_network_adaptor/smoothing_filter.cc", | 735 "audio_network_adaptor/smoothing_filter.cc", |
735 "audio_network_adaptor/smoothing_filter.h", | 736 "audio_network_adaptor/smoothing_filter.h", |
736 ] | 737 ] |
737 configs += [ "../..:common_config" ] | 738 configs += [ "../..:common_config" ] |
738 public_configs = [ "../..:common_inherited_config" ] | 739 public_configs = [ "../..:common_inherited_config" ] |
739 | 740 |
741 deps = [ | |
742 "../..:webrtc_common", | |
743 "../../system_wrappers", | |
minyue-webrtc
2016/10/06 13:39:41
ANA depends on FileWrapper, which belongs to syste
| |
744 ] | |
745 | |
740 if (rtc_enable_protobuf) { | 746 if (rtc_enable_protobuf) { |
741 deps = [ | 747 deps += [ |
742 ":ana_config_proto", | 748 ":ana_config_proto", |
743 ":ana_debug_dump_proto", | 749 ":ana_debug_dump_proto", |
744 ] | 750 ] |
745 defines = [ "WEBRTC_AUDIO_NETWORK_ADAPTOR_DEBUG_DUMP" ] | 751 defines = [ "WEBRTC_AUDIO_NETWORK_ADAPTOR_DEBUG_DUMP" ] |
746 } | 752 } |
747 } | 753 } |
748 | 754 |
749 config("neteq_config") { | 755 config("neteq_config") { |
750 include_dirs = [ | 756 include_dirs = [ |
751 # Need Opus header files for the audio classifier. | 757 # Need Opus header files for the audio classifier. |
(...skipping 845 matching lines...) Loading... | |
1597 "//testing/gtest", | 1603 "//testing/gtest", |
1598 ] | 1604 ] |
1599 | 1605 |
1600 if (is_clang) { | 1606 if (is_clang) { |
1601 # Suppress warnings from Chrome's Clang plugins. | 1607 # Suppress warnings from Chrome's Clang plugins. |
1602 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 1608 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
1603 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 1609 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
1604 } | 1610 } |
1605 } | 1611 } |
1606 } | 1612 } |
OLD | NEW |