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 | 10 |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 81 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
82 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 82 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
83 } | 83 } |
84 | 84 |
85 public_deps = [ | 85 public_deps = [ |
86 "../modules/audio_coding", | 86 "../modules/audio_coding", |
87 ] | 87 ] |
88 deps = [ | 88 deps = [ |
89 ":level_indicator", | 89 ":level_indicator", |
90 "..:webrtc_common", | 90 "..:webrtc_common", |
| 91 "../api:audio_mixer_api", |
91 "../api:call_api", | 92 "../api:call_api", |
92 "../base:rtc_base_approved", | 93 "../base:rtc_base_approved", |
93 "../common_audio", | 94 "../common_audio", |
94 "../logging:rtc_event_log_api", | 95 "../logging:rtc_event_log_api", |
95 "../modules/audio_conference_mixer", | 96 "../modules/audio_conference_mixer", |
96 "../modules/audio_device", | 97 "../modules/audio_device", |
97 "../modules/audio_processing", | 98 "../modules/audio_processing", |
98 "../modules/bitrate_controller", | 99 "../modules/bitrate_controller", |
99 "../modules/media_file", | 100 "../modules/media_file", |
100 "../modules/pacing", | 101 "../modules/pacing", |
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
345 } | 346 } |
346 | 347 |
347 if (is_clang) { | 348 if (is_clang) { |
348 # Suppress warnings from Chrome's Clang plugins. | 349 # Suppress warnings from Chrome's Clang plugins. |
349 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 350 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
350 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 351 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
351 } | 352 } |
352 } | 353 } |
353 } | 354 } |
354 } | 355 } |
OLD | NEW |