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

Side by Side Diff: media/cast/cast_sender.gyp

Issue 138753004: Cast: IPC glue between cast library transport and encoders. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added rtp statistics callbacks Created 6 years, 10 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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'includes': [ 6 'includes': [
7 'audio_sender/audio_sender.gypi', 7 'audio_sender/audio_sender.gypi',
8 'congestion_control/congestion_control.gypi', 8 'congestion_control/congestion_control.gypi',
9 'video_sender/video_sender.gypi', 9 'video_sender/video_sender.gypi',
10 ], 10 ],
11 'targets': [ 11 'targets': [
12 { 12 {
13 'target_name': 'cast_sender', 13 'target_name': 'cast_sender',
14 'type': 'static_library', 14 'type': 'static_library',
15 'include_dirs': [ 15 'include_dirs': [
16 '<(DEPTH)/', 16 '<(DEPTH)/',
17 ], 17 ],
18 'sources': [ 18 'sources': [
19 'cast_sender.h', 19 'cast_sender.h',
20 'cast_sender_impl.cc', 20 'cast_sender_impl.cc',
21 'cast_sender_impl.h', 21 'cast_sender_impl.h',
22 ], # source 22 ], # source
23 'dependencies': [ 23 'dependencies': [
24 '<(DEPTH)/media/cast/transport/cast_transport.gyp:cast_transport', 24 '<(DEPTH)/media/cast/transport/cast_transport.gyp:cast_transport',
25 'audio_sender', 25 'audio_sender',
26 'congestion_control', 26 'congestion_control',
27 'rtcp/rtcp.gyp:cast_rtcp', 27 'rtcp/rtcp.gyp:cast_rtcp',
28 'video_sender', 28 'video_sender',
29 ], # dependencies 29 ], # dependencies
30 'defines' : [
31 'MEDIA_IMPLEMENTATION',
32 ],
30 }, 33 },
31 ], 34 ],
32 } 35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698