summaryrefslogtreecommitdiff
path: root/chromium/media/cast/video_receiver/codecs/vp8/vp8_decoder.gyp
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/media/cast/video_receiver/codecs/vp8/vp8_decoder.gyp')
-rw-r--r--chromium/media/cast/video_receiver/codecs/vp8/vp8_decoder.gyp26
1 files changed, 26 insertions, 0 deletions
diff --git a/chromium/media/cast/video_receiver/codecs/vp8/vp8_decoder.gyp b/chromium/media/cast/video_receiver/codecs/vp8/vp8_decoder.gyp
new file mode 100644
index 00000000000..bed02c8454d
--- /dev/null
+++ b/chromium/media/cast/video_receiver/codecs/vp8/vp8_decoder.gyp
@@ -0,0 +1,26 @@
+# Copyright 2013 The Chromium Authors. All rights reserved.
+# Use of the source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'cast_vp8_decoder',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '<(DEPTH)/',
+ '<(DEPTH)/third_party/',
+ '<(DEPTH)/third_party/libvpx/',
+ ],
+ 'sources': [
+ 'vp8_decoder.cc',
+ 'vp8_decoder.h',
+ ], # source
+ 'dependencies': [
+ '<(DEPTH)/base/base.gyp:base',
+ '<(DEPTH)/third_party/libvpx/libvpx.gyp:libvpx',
+ '<(DEPTH)/base/base.gyp:test_support_base',
+ ],
+ },
+ ],
+}