blob: 665b9e3da3ca7f8d5ff6facdfc4cf9b414936c53 [file] [log] [blame]
Tim Nac63bf102020-02-21 11:09:08 -08001#Copyright(c) 2020 The WebRTC project authors.All Rights Reserved.
2#
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
5#tree.An additional intellectual property rights grant can be found
6#in the file PATENTS.All contributing project authors may
7#be found in the AUTHORS file in the root of the source tree.
8
9import("../../webrtc.gni")
10
11rtc_source_set("voip_api") {
12 visibility = [ "*" ]
13 sources = [
14 "voip_base.h",
15 "voip_codec.h",
16 "voip_engine.h",
17 "voip_network.h",
18 ]
19 deps = [
Tim Naccefde92020-03-03 09:29:22 -080020 "..:array_view",
Tim Nac63bf102020-02-21 11:09:08 -080021 "../audio_codecs:audio_codecs_api",
Tim Naccefde92020-03-03 09:29:22 -080022 "//third_party/abseil-cpp/absl/types:optional",
Tim Nac63bf102020-02-21 11:09:08 -080023 ]
24}