The libjingle_p2p target is renamed to rtc_pc. The libjingle_p2p_unittest test will be renamed in a separate follow-up CL, to make it possible to run all trybots successfully for this CL. BUG=webrtc:5419 R=deadbeef@webrtc.org, pthatcher@webrtc.org, tommi@webrtc.org Review URL: https://codereview.webrtc.org/1691463002 . Cr-Commit-Position: refs/heads/master@{#11592}
32 lines
917 B
Python
32 lines
917 B
Python
# Copyright (c) 2014 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.
|
|
|
|
{
|
|
'includes': ['../build/common.gypi'],
|
|
'targets': [
|
|
{
|
|
'target_name': 'libjingle_xmpphelp',
|
|
'type': 'static_library',
|
|
'dependencies': [
|
|
'<(webrtc_root)/pc/pc.gyp:rtc_pc',
|
|
],
|
|
'conditions': [
|
|
['build_expat==1', {
|
|
'dependencies': [
|
|
'<(DEPTH)/third_party/expat/expat.gyp:expat',
|
|
],
|
|
}],
|
|
],
|
|
'sources': [
|
|
'xmpp/jingleinfotask.cc',
|
|
'xmpp/jingleinfotask.h',
|
|
],
|
|
}, # target libjingle_xmpphelp
|
|
],
|
|
}
|