| 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 21 matching lines...) Expand all Loading... |
| 32 } | 32 } |
| 33 | 33 |
| 34 deps = [ | 34 deps = [ |
| 35 "..:webrtc_common", | 35 "..:webrtc_common", |
| 36 "../api:audio_mixer_api", | 36 "../api:audio_mixer_api", |
| 37 "../api:call_api", | 37 "../api:call_api", |
| 38 "../base:rtc_base_approved", | 38 "../base:rtc_base_approved", |
| 39 "../base:rtc_task_queue", | 39 "../base:rtc_task_queue", |
| 40 "../call:call_interfaces", | 40 "../call:call_interfaces", |
| 41 "../common_audio", | 41 "../common_audio", |
| 42 "../modules/audio_coding:audio_encoder_factory_interface", |
| 43 "../modules/audio_coding:builtin_audio_encoder_factory", |
| 44 "../modules/audio_coding:cng", |
| 42 "../modules/audio_device", | 45 "../modules/audio_device", |
| 43 "../modules/audio_processing", | 46 "../modules/audio_processing", |
| 44 "../modules/bitrate_controller:bitrate_controller", | 47 "../modules/bitrate_controller:bitrate_controller", |
| 45 "../modules/congestion_controller:congestion_controller", | 48 "../modules/congestion_controller:congestion_controller", |
| 46 "../modules/pacing:pacing", | 49 "../modules/pacing:pacing", |
| 47 "../modules/remote_bitrate_estimator:remote_bitrate_estimator", | 50 "../modules/remote_bitrate_estimator:remote_bitrate_estimator", |
| 48 "../modules/rtp_rtcp:rtp_rtcp", | 51 "../modules/rtp_rtcp:rtp_rtcp", |
| 49 "../system_wrappers", | 52 "../system_wrappers", |
| 50 "../voice_engine", | 53 "../voice_engine", |
| 51 ] | 54 ] |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 "//resources/voice_engine/audio_tiny48.wav", | 121 "//resources/voice_engine/audio_tiny48.wav", |
| 119 ] | 122 ] |
| 120 | 123 |
| 121 if (!build_with_chromium && is_clang) { | 124 if (!build_with_chromium && is_clang) { |
| 122 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) | 125 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) |
| 123 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 126 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 124 } | 127 } |
| 125 } | 128 } |
| 126 } | 129 } |
| 127 } | 130 } |
| OLD | NEW |