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

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

Issue 100823015: Cast: move net->transport (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updating transport callback Created 6 years, 11 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
« no previous file with comments | « media/cast/rtcp/rtcp.cc ('k') | media/cast/rtcp/rtcp_defines.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'cast_rtcp', 8 'target_name': 'cast_rtcp',
9 'type': 'static_library', 9 'type': 'static_library',
10 'include_dirs': [ 10 'include_dirs': [
11 '<(DEPTH)/', 11 '<(DEPTH)/',
12 ], 12 ],
13 'sources': [ 13 'sources': [
14 'rtcp_defines.h', 14 'rtcp_defines.h',
15 'rtcp.h', 15 'rtcp.h',
16 'rtcp.cc', 16 'rtcp.cc',
17 'rtcp_receiver.cc', 17 'rtcp_receiver.cc',
18 'rtcp_receiver.h', 18 'rtcp_receiver.h',
19 'rtcp_sender.cc', 19 'rtcp_sender.cc',
20 'rtcp_sender.h', 20 'rtcp_sender.h',
21 'rtcp_utility.cc', 21 'rtcp_utility.cc',
22 'rtcp_utility.h', 22 'rtcp_utility.h',
23 '<(DEPTH)/media/cast/net/rtcp/rtcp_builder.cc',
24 '<(DEPTH)/media/cast/net/rtcp/rtcp_builder.h',
25 ], # source 23 ], # source
26 'dependencies': [ 24 'dependencies': [
27 '<(DEPTH)/base/base.gyp:base', 25 '<(DEPTH)/base/base.gyp:base',
26 '<(DEPTH)/media/cast/transport/cast_transport.gyp:cast_transport',
28 '<(DEPTH)/net/net.gyp:net', 27 '<(DEPTH)/net/net.gyp:net',
29 ], 28 ],
30 }, 29 },
31 { 30 {
32 'target_name': 'cast_rtcp_test', 31 'target_name': 'cast_rtcp_test',
33 'type': 'static_library', 32 'type': 'static_library',
34 'include_dirs': [ 33 'include_dirs': [
35 '<(DEPTH)/', 34 '<(DEPTH)/',
36 ], 35 ],
37 'sources': [ 36 'sources': [
38 'test_rtcp_packet_builder.cc', 37 'test_rtcp_packet_builder.cc',
39 'test_rtcp_packet_builder.h', 38 'test_rtcp_packet_builder.h',
40 ], # source 39 ], # source
41 'dependencies': [ 40 'dependencies': [
42 'cast_rtcp', 41 'cast_rtcp',
42 '<(DEPTH)/media/cast/transport/cast_transport.gyp:cast_transport',
43 '<(DEPTH)/testing/gtest.gyp:gtest', 43 '<(DEPTH)/testing/gtest.gyp:gtest',
44 ], 44 ],
45 }, 45 },
46 ], 46 ],
47 } 47 }
48 48
OLDNEW
« no previous file with comments | « media/cast/rtcp/rtcp.cc ('k') | media/cast/rtcp/rtcp_defines.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698