| 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("../build/webrtc.gni") | 9 import("../build/webrtc.gni") |
| 10 if (is_android) { | 10 if (is_android) { |
| 11 import("//build/config/android/config.gni") | 11 import("//build/config/android/config.gni") |
| 12 import("//build/config/android/rules.gni") | 12 import("//build/config/android/rules.gni") |
| 13 } | 13 } |
| 14 | 14 |
| 15 group("api") { | 15 group("api") { |
| 16 public_deps = [ | 16 public_deps = [ |
| 17 ":libjingle_peerconnection", | 17 ":libjingle_peerconnection", |
| 18 ] | 18 ] |
| 19 } | 19 } |
| 20 | 20 |
| 21 rtc_source_set("call_api") { | 21 rtc_source_set("call_api") { |
| 22 sources = [ | 22 sources = [ |
| 23 "call/audio_sink.h", | 23 "call/audio_sink.h", |
| 24 "call/flexfec_receive_stream.h", | |
| 25 ] | 24 ] |
| 26 | 25 |
| 27 deps = [ | 26 deps = [ |
| 28 # TODO(kjellander): Add remaining dependencies when webrtc:4243 is done. | 27 # TODO(kjellander): Add remaining dependencies when webrtc:4243 is done. |
| 29 ":audio_mixer_api", | 28 ":audio_mixer_api", |
| 30 ":transport_api", | 29 ":transport_api", |
| 31 "..:webrtc_common", | 30 "..:webrtc_common", |
| 32 "../base:rtc_base_approved", | 31 "../base:rtc_base_approved", |
| 33 "../modules/audio_coding:audio_decoder_factory_interface", | 32 "../modules/audio_coding:audio_decoder_factory_interface", |
| 34 "../modules/audio_coding:audio_encoder_interface", | 33 "../modules/audio_coding:audio_encoder_interface", |
| (...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 public_deps = [ | 330 public_deps = [ |
| 332 ":audio_mixer_api", | 331 ":audio_mixer_api", |
| 333 ] | 332 ] |
| 334 | 333 |
| 335 deps = [ | 334 deps = [ |
| 336 "//testing/gmock", | 335 "//testing/gmock", |
| 337 "//webrtc/test:test_support", | 336 "//webrtc/test:test_support", |
| 338 ] | 337 ] |
| 339 } | 338 } |
| 340 } | 339 } |
| OLD | NEW |