blob: bf0f2b53f84cd4a3808b7b2c447da6f5d6e5a088 [file] [log] [blame]
# Copyright (c) 2016 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("../build/webrtc.gni")
group("pc") {
deps = [
":rtc_pc",
]
}
config("rtc_pc_config") {
defines = [
"SRTP_RELATIVE_PATH",
"HAVE_SCTP",
"HAVE_SRTP",
]
}
source_set("rtc_pc") {
defines = []
sources = [
"audiomonitor.cc",
"audiomonitor.h",
"bundlefilter.cc",
"bundlefilter.h",
"channel.cc",
"channel.h",
"channelmanager.cc",
"channelmanager.h",
"currentspeakermonitor.cc",
"currentspeakermonitor.h",
"mediamonitor.cc",
"mediamonitor.h",
"mediasession.cc",
"mediasession.h",
"mediasink.h",
"rtcpmuxfilter.cc",
"rtcpmuxfilter.h",
"srtpfilter.cc",
"srtpfilter.h",
"voicechannel.h",
]
deps = [
"../base:rtc_base",
"../media",
]
if (build_with_chromium) {
sources += [
"externalhmac.cc",
"externalhmac.h",
]
}
if (rtc_build_libsrtp) {
deps += [ "//third_party/libsrtp" ]
}
configs += [ "..:common_config" ]
public_configs = [
"..:common_inherited_config",
":rtc_pc_config",
]
if (is_clang) {
# Suppress warnings from Chrome's Clang plugins.
# See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
configs -= [ "//build/config/clang:find_bad_constructs" ]
}
}