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

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: clean up Created 7 years 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
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 ], # source 23 ], # source
24 'dependencies': [ 24 'dependencies': [
25 '<(DEPTH)/base/base.gyp:base', 25 '<(DEPTH)/base/base.gyp:base',
26 '<(DEPTH)/net/net.gyp:net', 26 '<(DEPTH)/net/net.gyp:net',
27 '<(DEPTH)/media/cast/transport/cast_transport.gyp:cast_transport',
pwestin 2013/12/19 18:58:05 order m before n
mikhal1 2013/12/19 19:32:08 Done.
27 ], 28 ],
28 }, 29 },
29 { 30 {
30 'target_name': 'cast_rtcp_test', 31 'target_name': 'cast_rtcp_test',
31 'type': 'static_library', 32 'type': 'static_library',
32 'include_dirs': [ 33 'include_dirs': [
33 '<(DEPTH)/', 34 '<(DEPTH)/',
34 ], 35 ],
35 'sources': [ 36 'sources': [
36 'test_rtcp_packet_builder.cc', 37 'test_rtcp_packet_builder.cc',
37 'test_rtcp_packet_builder.h', 38 'test_rtcp_packet_builder.h',
38 ], # source 39 ], # source
39 'dependencies': [ 40 'dependencies': [
40 'cast_rtcp', 41 'cast_rtcp',
41 '<(DEPTH)/testing/gtest.gyp:gtest', 42 '<(DEPTH)/testing/gtest.gyp:gtest',
42 ], 43 ],
43 }, 44 },
44 ], 45 ],
45 } 46 }
46 47
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698