| OLD | NEW |
| 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2015 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("../webrtc.gni") | 9 import("../webrtc.gni") |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 if (!build_with_chromium && is_clang) { | 31 if (!build_with_chromium && is_clang) { |
| 32 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 32 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 33 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 33 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 34 } | 34 } |
| 35 | 35 |
| 36 deps = [ | 36 deps = [ |
| 37 "..:webrtc_common", | 37 "..:webrtc_common", |
| 38 "../api:audio_mixer_api", | 38 "../api:audio_mixer_api", |
| 39 "../api:call_api", | 39 "../api:call_api", |
| 40 "../api:optional", |
| 40 "../api/audio_codecs:audio_codecs_api", | 41 "../api/audio_codecs:audio_codecs_api", |
| 41 "../api/audio_codecs:builtin_audio_encoder_factory", | 42 "../api/audio_codecs:builtin_audio_encoder_factory", |
| 42 "../call:call_interfaces", | 43 "../call:call_interfaces", |
| 43 "../call:rtp_interfaces", | 44 "../call:rtp_interfaces", |
| 44 "../common_audio", | 45 "../common_audio", |
| 45 "../modules/audio_coding:cng", | 46 "../modules/audio_coding:cng", |
| 46 "../modules/audio_device", | 47 "../modules/audio_device", |
| 47 "../modules/audio_processing", | 48 "../modules/audio_processing", |
| 48 "../modules/bitrate_controller:bitrate_controller", | 49 "../modules/bitrate_controller:bitrate_controller", |
| 49 "../modules/congestion_controller:congestion_controller", | 50 "../modules/congestion_controller:congestion_controller", |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 data = [ | 167 data = [ |
| 167 "//resources/voice_engine/audio_dtx16.wav", | 168 "//resources/voice_engine/audio_dtx16.wav", |
| 168 ] | 169 ] |
| 169 | 170 |
| 170 if (!build_with_chromium && is_clang) { | 171 if (!build_with_chromium && is_clang) { |
| 171 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 172 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 172 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 173 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 173 } | 174 } |
| 174 } | 175 } |
| 175 } | 176 } |
| OLD | NEW |