OLD | NEW |
---|---|
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', | |
pwestin
2013/12/18 18:59:02
indentation
| |
24 '<(DEPTH)/media/cast/net/rtcp/rtcp_builder.h', | |
23 ], # source | 25 ], # source |
24 'dependencies': [ | 26 'dependencies': [ |
25 '<(DEPTH)/base/base.gyp:base', | 27 '<(DEPTH)/base/base.gyp:base', |
26 '<(DEPTH)/net/net.gyp:net', | 28 '<(DEPTH)/net/net.gyp:net', |
27 ], | 29 ], |
28 }, | 30 }, |
29 { | 31 { |
30 'target_name': 'cast_rtcp_test', | 32 'target_name': 'cast_rtcp_test', |
31 'type': 'static_library', | 33 'type': 'static_library', |
32 'include_dirs': [ | 34 'include_dirs': [ |
33 '<(DEPTH)/', | 35 '<(DEPTH)/', |
34 ], | 36 ], |
35 'sources': [ | 37 'sources': [ |
36 'test_rtcp_packet_builder.cc', | 38 'test_rtcp_packet_builder.cc', |
37 'test_rtcp_packet_builder.h', | 39 'test_rtcp_packet_builder.h', |
38 ], # source | 40 ], # source |
39 'dependencies': [ | 41 'dependencies': [ |
40 'cast_rtcp', | 42 'cast_rtcp', |
41 '<(DEPTH)/testing/gtest.gyp:gtest', | 43 '<(DEPTH)/testing/gtest.gyp:gtest', |
42 ], | 44 ], |
43 }, | 45 }, |
44 ], | 46 ], |
45 } | 47 } |
46 | 48 |
OLD | NEW |