| 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 895 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 906 "audio_network_adaptor/channel_controller.cc", | 906 "audio_network_adaptor/channel_controller.cc", |
| 907 "audio_network_adaptor/channel_controller.h", | 907 "audio_network_adaptor/channel_controller.h", |
| 908 "audio_network_adaptor/controller.cc", | 908 "audio_network_adaptor/controller.cc", |
| 909 "audio_network_adaptor/controller.h", | 909 "audio_network_adaptor/controller.h", |
| 910 "audio_network_adaptor/controller_manager.cc", | 910 "audio_network_adaptor/controller_manager.cc", |
| 911 "audio_network_adaptor/controller_manager.h", | 911 "audio_network_adaptor/controller_manager.h", |
| 912 "audio_network_adaptor/debug_dump_writer.cc", | 912 "audio_network_adaptor/debug_dump_writer.cc", |
| 913 "audio_network_adaptor/debug_dump_writer.h", | 913 "audio_network_adaptor/debug_dump_writer.h", |
| 914 "audio_network_adaptor/dtx_controller.cc", | 914 "audio_network_adaptor/dtx_controller.cc", |
| 915 "audio_network_adaptor/dtx_controller.h", | 915 "audio_network_adaptor/dtx_controller.h", |
| 916 "audio_network_adaptor/event_log_writer.cc", |
| 917 "audio_network_adaptor/event_log_writer.h", |
| 916 "audio_network_adaptor/fec_controller.cc", | 918 "audio_network_adaptor/fec_controller.cc", |
| 917 "audio_network_adaptor/fec_controller.h", | 919 "audio_network_adaptor/fec_controller.h", |
| 918 "audio_network_adaptor/frame_length_controller.cc", | 920 "audio_network_adaptor/frame_length_controller.cc", |
| 919 "audio_network_adaptor/frame_length_controller.h", | 921 "audio_network_adaptor/frame_length_controller.h", |
| 920 "audio_network_adaptor/include/audio_network_adaptor.h", | 922 "audio_network_adaptor/include/audio_network_adaptor.h", |
| 921 ] | 923 ] |
| 922 | 924 |
| 923 deps = [ | 925 deps = [ |
| 924 "../..:webrtc_common", | 926 "../..:webrtc_common", |
| 925 "../../base:rtc_base_approved", | 927 "../../base:rtc_base_approved", |
| 926 "../../common_audio", | 928 "../../common_audio", |
| 929 "../../logging:rtc_event_log_api", |
| 927 "../../system_wrappers", | 930 "../../system_wrappers", |
| 928 ] | 931 ] |
| 929 | 932 |
| 930 if (rtc_enable_protobuf) { | 933 if (rtc_enable_protobuf) { |
| 931 deps += [ | 934 deps += [ |
| 932 ":ana_config_proto", | 935 ":ana_config_proto", |
| 933 ":ana_debug_dump_proto", | 936 ":ana_debug_dump_proto", |
| 934 ] | 937 ] |
| 935 defines = [ "WEBRTC_AUDIO_NETWORK_ADAPTOR_DEBUG_DUMP" ] | 938 defines = [ "WEBRTC_AUDIO_NETWORK_ADAPTOR_DEBUG_DUMP" ] |
| 936 } | 939 } |
| 940 |
| 941 if (!build_with_chromium && is_clang) { |
| 942 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 943 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 944 } |
| 937 } | 945 } |
| 938 | 946 |
| 939 config("neteq_config") { | 947 config("neteq_config") { |
| 940 include_dirs = [ | 948 include_dirs = [ |
| 941 # Need Opus header files for the audio classifier. | 949 # Need Opus header files for the audio classifier. |
| 942 "//third_party/opus/src/celt", | 950 "//third_party/opus/src/celt", |
| 943 "//third_party/opus/src/src", | 951 "//third_party/opus/src/src", |
| 944 ] | 952 ] |
| 945 } | 953 } |
| 946 | 954 |
| (...skipping 968 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1915 "../../test:test_main", | 1923 "../../test:test_main", |
| 1916 "//testing/gtest", | 1924 "//testing/gtest", |
| 1917 ] | 1925 ] |
| 1918 | 1926 |
| 1919 if (!build_with_chromium && is_clang) { | 1927 if (!build_with_chromium && is_clang) { |
| 1920 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 1928 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 1921 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 1929 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 1922 } | 1930 } |
| 1923 } | 1931 } |
| 1924 } | 1932 } |
| OLD | NEW |