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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
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:call_api", | 91 "../api:call_api", |
92 "../base:rtc_base_approved", | 92 "../base:rtc_base_approved", |
93 "../common_audio", | 93 "../common_audio", |
94 "../logging:rtc_event_log_api", | 94 "../logging:rtc_event_log_api", |
95 "../modules/audio_coding:audio_decoder_factory_interface", | |
96 "../modules/audio_coding:builtin_audio_decoder_factory", | |
the sun
2016/10/13 13:46:57
I would think this includes the above interface -
| |
97 "../modules/audio_coding:rent_a_codec", | |
95 "../modules/audio_conference_mixer", | 98 "../modules/audio_conference_mixer", |
96 "../modules/audio_device", | 99 "../modules/audio_device", |
97 "../modules/audio_processing", | 100 "../modules/audio_processing", |
98 "../modules/bitrate_controller", | 101 "../modules/bitrate_controller", |
99 "../modules/media_file", | 102 "../modules/media_file", |
100 "../modules/pacing", | 103 "../modules/pacing", |
101 "../modules/rtp_rtcp", | 104 "../modules/rtp_rtcp", |
102 "../modules/utility", | 105 "../modules/utility", |
103 "../system_wrappers", | 106 "../system_wrappers", |
104 ] | 107 ] |
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
345 } | 348 } |
346 | 349 |
347 if (is_clang) { | 350 if (is_clang) { |
348 # Suppress warnings from Chrome's Clang plugins. | 351 # Suppress warnings from Chrome's Clang plugins. |
349 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 352 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
350 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 353 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
351 } | 354 } |
352 } | 355 } |
353 } | 356 } |
354 } | 357 } |
OLD | NEW |