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_encoder_interface", | |
33 "audio_codecs:audio_codecs_api", | 32 "audio_codecs:audio_codecs_api", |
34 ] | 33 ] |
35 } | 34 } |
36 | 35 |
37 rtc_static_library("libjingle_peerconnection_api") { | 36 rtc_static_library("libjingle_peerconnection_api") { |
38 check_includes = false # TODO(kjellander): Remove (bugs.webrtc.org/6828) | 37 check_includes = false # TODO(kjellander): Remove (bugs.webrtc.org/6828) |
39 cflags = [] | 38 cflags = [] |
40 sources = [ | 39 sources = [ |
41 "datachannel.h", | 40 "datachannel.h", |
42 "datachannelinterface.h", | 41 "datachannelinterface.h", |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 240 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
242 } | 241 } |
243 | 242 |
244 deps = [ | 243 deps = [ |
245 ":libjingle_peerconnection_api", | 244 ":libjingle_peerconnection_api", |
246 ":ortc_api", | 245 ":ortc_api", |
247 "//webrtc/test:test_support", | 246 "//webrtc/test:test_support", |
248 ] | 247 ] |
249 } | 248 } |
250 } | 249 } |
OLD | NEW |