1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 2013 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'includes': [
# 'audio_sender/audio_sender.gypi',
'congestion_control/congestion_control.gypi',
# 'video_sender/video_sender.gypi',
],
'targets': [
{
'target_name': 'cast_sender_impl',
'type': 'static_library',
'sources': [
'cast_sender.h',
# 'cast_sender_impl.cc',
# 'cast_sender_impl.h',
], # source
'dependencies': [
# 'audio_sender',
'congestion_control',
'pacing/paced_sender.gyp:paced_sender',
'rtcp/rtcp.gyp:cast_rtcp',
'rtp_sender/rtp_sender.gyp:cast_rtp_sender',
# 'video_sender',
], # dependencies
},
],
}
|