Tim Na | c63bf10 | 2020-02-21 11:09:08 -0800 | [diff] [blame] | 1 | #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 | |
| 9 | import("../../webrtc.gni") |
| 10 | |
| 11 | rtc_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 Na | ccefde9 | 2020-03-03 09:29:22 -0800 | [diff] [blame] | 20 | "..:array_view", |
Tim Na | c63bf10 | 2020-02-21 11:09:08 -0800 | [diff] [blame] | 21 | "../audio_codecs:audio_codecs_api", |
Tim Na | ccefde9 | 2020-03-03 09:29:22 -0800 | [diff] [blame] | 22 | "//third_party/abseil-cpp/absl/types:optional", |
Tim Na | c63bf10 | 2020-02-21 11:09:08 -0800 | [diff] [blame] | 23 | ] |
| 24 | } |