summaryrefslogtreecommitdiff
path: root/chromium/media/cast/cast_sender.gyp
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/media/cast/cast_sender.gyp')
-rw-r--r--chromium/media/cast/cast_sender.gyp35
1 files changed, 35 insertions, 0 deletions
diff --git a/chromium/media/cast/cast_sender.gyp b/chromium/media/cast/cast_sender.gyp
new file mode 100644
index 00000000000..fe99f803820
--- /dev/null
+++ b/chromium/media/cast/cast_sender.gyp
@@ -0,0 +1,35 @@
+# 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',
+ 'include_dirs': [
+ '<(DEPTH)/',
+ '<(DEPTH)/third_party/',
+ '<(DEPTH)/third_party/webrtc/',
+ ],
+ '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
+ },
+ ],
+}