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 821 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
832 "codecs/opus/audio_encoder_opus.h", | 832 "codecs/opus/audio_encoder_opus.h", |
833 ] | 833 ] |
834 | 834 |
835 deps = [ | 835 deps = [ |
836 ":audio_decoder_interface", | 836 ":audio_decoder_interface", |
837 ":audio_encoder_interface", | 837 ":audio_encoder_interface", |
838 ":audio_network_adaptor", | 838 ":audio_network_adaptor", |
839 "../..:webrtc_common", | 839 "../..:webrtc_common", |
840 "../../base:rtc_analytics", | 840 "../../base:rtc_analytics", |
841 "../../base:rtc_base_approved", | 841 "../../base:rtc_base_approved", |
| 842 "../../common_audio", |
842 "../../system_wrappers", | 843 "../../system_wrappers", |
843 ] | 844 ] |
844 public_deps = [ | 845 public_deps = [ |
845 ":webrtc_opus_c", | 846 ":webrtc_opus_c", |
846 ] | 847 ] |
847 | 848 |
848 defines = [] | 849 defines = [] |
849 if (rtc_opus_variable_complexity) { | 850 if (rtc_opus_variable_complexity) { |
850 defines += [ "WEBRTC_OPUS_VARIABLE_COMPLEXITY=1" ] | 851 defines += [ "WEBRTC_OPUS_VARIABLE_COMPLEXITY=1" ] |
851 } else { | 852 } else { |
(...skipping 1059 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1911 "../../test:test_main", | 1912 "../../test:test_main", |
1912 "//testing/gtest", | 1913 "//testing/gtest", |
1913 ] | 1914 ] |
1914 | 1915 |
1915 if (!build_with_chromium && is_clang) { | 1916 if (!build_with_chromium && is_clang) { |
1916 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 1917 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
1917 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 1918 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
1918 } | 1919 } |
1919 } | 1920 } |
1920 } | 1921 } |
OLD | NEW |