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 11 matching lines...) Expand all Loading... |
22 sources = [ | 22 sources = [ |
23 "call/audio_sink.h", | 23 "call/audio_sink.h", |
24 ] | 24 ] |
25 | 25 |
26 deps = [ | 26 deps = [ |
27 # TODO(kjellander): Add remaining dependencies when webrtc:4243 is done. | 27 # TODO(kjellander): Add remaining dependencies when webrtc:4243 is done. |
28 ":audio_mixer_api", | 28 ":audio_mixer_api", |
29 ":transport_api", | 29 ":transport_api", |
30 "..:webrtc_common", | 30 "..:webrtc_common", |
31 "../base:rtc_base_approved", | 31 "../base:rtc_base_approved", |
32 "../modules/audio_coding:audio_decoder_factory_interface", | |
33 "../modules/audio_coding:audio_encoder_interface", | 32 "../modules/audio_coding:audio_encoder_interface", |
| 33 "audio_codecs:audio_codecs_api", |
34 ] | 34 ] |
35 } | 35 } |
36 | 36 |
37 rtc_static_library("libjingle_peerconnection_api") { | 37 rtc_static_library("libjingle_peerconnection_api") { |
38 check_includes = false # TODO(kjellander): Remove (bugs.webrtc.org/6828) | 38 check_includes = false # TODO(kjellander): Remove (bugs.webrtc.org/6828) |
39 cflags = [] | 39 cflags = [] |
40 sources = [ | 40 sources = [ |
41 "datachannel.h", | 41 "datachannel.h", |
42 "datachannelinterface.h", | 42 "datachannelinterface.h", |
43 "dtmfsenderinterface.h", | 43 "dtmfsenderinterface.h", |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 deps = [ | 194 deps = [ |
195 ":libjingle_peerconnection_api", | 195 ":libjingle_peerconnection_api", |
196 "../base:rtc_base_approved", | 196 "../base:rtc_base_approved", |
197 ] | 197 ] |
198 if (!build_with_chromium && is_clang) { | 198 if (!build_with_chromium && is_clang) { |
199 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 199 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
200 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 200 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
201 } | 201 } |
202 } | 202 } |
203 } | 203 } |
OLD | NEW |