Bug: webrtc:11251 Change-Id: I26b6915d3ad6bb5a50f9898a6866889867fd53f5 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/169000 Commit-Queue: Tim Na <natim@webrtc.org> Reviewed-by: Patrik Höglund <phoglund@webrtc.org> Cr-Commit-Position: refs/heads/master@{#30594}
24 lines
646 B
Plaintext
24 lines
646 B
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_engine.h",
|
|
"voip_network.h",
|
|
]
|
|
deps = [
|
|
"..:transport_api",
|
|
"../audio_codecs:audio_codecs_api",
|
|
]
|
|
}
|