summaryrefslogtreecommitdiff
path: root/chromium/media/cast/rtp_receiver/rtp_receiver.gyp
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/media/cast/rtp_receiver/rtp_receiver.gyp')
-rw-r--r--chromium/media/cast/rtp_receiver/rtp_receiver.gyp27
1 files changed, 27 insertions, 0 deletions
diff --git a/chromium/media/cast/rtp_receiver/rtp_receiver.gyp b/chromium/media/cast/rtp_receiver/rtp_receiver.gyp
new file mode 100644
index 00000000000..c1d4d5adf05
--- /dev/null
+++ b/chromium/media/cast/rtp_receiver/rtp_receiver.gyp
@@ -0,0 +1,27 @@
+# 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.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'cast_rtp_receiver',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '<(DEPTH)/',
+ '<(DEPTH)/third_party/',
+ ],
+ 'sources': [
+ 'receiver_stats.cc',
+ 'receiver_stats.h',
+ 'rtp_receiver.cc',
+ 'rtp_receiver.h',
+ ], # source
+ 'dependencies': [
+ '<(DEPTH)/base/base.gyp:base',
+ '<(DEPTH)/base/base.gyp:test_support_base',
+ 'rtp_parser/rtp_parser.gypi:*',
+ ],
+ },
+ ],
+}