This is a reland of 8c2250eddc7263036397179a0794b9b17d7afb38 Original change's description: > Replace RTC_WARN_UNUSED_RESULT with ABSL_MUST_USE_RESULT in c++ code > > Bug: webrtc:12336 > Change-Id: If76f00d0883b5c8a90d3ef5554f5e22384b3fb58 > Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/197620 > Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> > Reviewed-by: Christoffer Rodbro <crodbro@webrtc.org> > Commit-Queue: Danil Chapovalov <danilchap@webrtc.org> > Cr-Commit-Position: refs/heads/master@{#32978} Bug: webrtc:12336 Change-Id: I1cd017d45c1578528dec4532345950e9823f4a63 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/201732 Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Christoffer Rodbro <crodbro@webrtc.org> Commit-Queue: Danil Chapovalov <danilchap@webrtc.org> Cr-Commit-Position: refs/heads/master@{#33003}
66 lines
1.7 KiB
Plaintext
66 lines
1.7 KiB
Plaintext
# Copyright(c) 2020 The WebRTC project authors.All Rights Reserved.
|
|
#
|
|
# Use of this source code is governed by a BSD - style license
|
|
# that can be found in the LICENSE file in the root of the source
|
|
# tree.An additional intellectual property rights grant can be found
|
|
# in the file PATENTS.All contributing project authors may
|
|
# be found in the AUTHORS file in the root of the source tree.
|
|
|
|
import("../../webrtc.gni")
|
|
|
|
rtc_source_set("voip_api") {
|
|
visibility = [ "*" ]
|
|
sources = [
|
|
"voip_base.h",
|
|
"voip_codec.h",
|
|
"voip_dtmf.h",
|
|
"voip_engine.h",
|
|
"voip_network.h",
|
|
"voip_statistics.h",
|
|
"voip_volume_control.h",
|
|
]
|
|
deps = [
|
|
"..:array_view",
|
|
"../../rtc_base/system:unused",
|
|
"../audio_codecs:audio_codecs_api",
|
|
"../neteq:neteq_api",
|
|
]
|
|
absl_deps = [
|
|
"//third_party/abseil-cpp/absl/base:core_headers",
|
|
"//third_party/abseil-cpp/absl/types:optional",
|
|
]
|
|
}
|
|
|
|
rtc_library("voip_engine_factory") {
|
|
visibility = [ "*" ]
|
|
sources = [
|
|
"voip_engine_factory.cc",
|
|
"voip_engine_factory.h",
|
|
]
|
|
deps = [
|
|
":voip_api",
|
|
"..:scoped_refptr",
|
|
"../../audio/voip:voip_core",
|
|
"../../modules/audio_device:audio_device_api",
|
|
"../../modules/audio_processing:api",
|
|
"../../rtc_base:logging",
|
|
"../audio_codecs:audio_codecs_api",
|
|
"../task_queue",
|
|
]
|
|
}
|
|
|
|
if (rtc_include_tests) {
|
|
rtc_library("voip_engine_factory_unittests") {
|
|
testonly = true
|
|
sources = [ "voip_engine_factory_unittest.cc" ]
|
|
deps = [
|
|
":voip_engine_factory",
|
|
"../../modules/audio_device:mock_audio_device",
|
|
"../../modules/audio_processing:mocks",
|
|
"../../test:audio_codec_mocks",
|
|
"../../test:test_support",
|
|
"../task_queue:default_task_queue_factory",
|
|
]
|
|
}
|
|
}
|