Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(497)

Side by Side Diff: media/cast/video_receiver/codecs/vp8/vp8_decoder.gyp

Issue 225023010: [Cast] Refactor/clean-up VideoReceiver to match AudioReceiver as closely as possible. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of the source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'chromium_code': 1,
8 },
9 'targets': [
10 {
11 'target_name': 'cast_vp8_decoder',
12 'type': 'static_library',
13 'include_dirs': [
14 '<(DEPTH)/',
15 '<(DEPTH)/third_party/',
16 '<(DEPTH)/third_party/libvpx/',
17 ],
18 'sources': [
19 'vp8_decoder.cc',
20 'vp8_decoder.h',
21 ], # source
22 'dependencies': [
23 '<(DEPTH)/base/base.gyp:base',
24 '<(DEPTH)/third_party/libvpx/libvpx.gyp:libvpx',
25 ],
26 },
27 ],
28 }
OLDNEW
« no previous file with comments | « media/cast/video_receiver/codecs/vp8/vp8_decoder.cc ('k') | media/cast/video_receiver/video_decoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698