OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 { | 9 { |
10 'includes': [ '../build/common.gypi', ], | 10 'includes': [ '../build/common.gypi', ], |
11 'targets': [ | 11 'targets': [ |
12 { | 12 { |
13 'target_name': 'rtc_p2p', | 13 'target_name': 'rtc_p2p', |
14 'type': 'static_library', | 14 'type': 'static_library', |
15 'dependencies': [ | 15 'dependencies': [ |
16 '<(webrtc_root)/base/base.gyp:rtc_base', | 16 '<(webrtc_root)/base/base.gyp:rtc_base', |
17 '<(webrtc_root)/common.gyp:webrtc_common', | 17 '<(webrtc_root)/common.gyp:webrtc_common', |
18 ], | 18 ], |
19 'sources': [ | 19 'sources': [ |
20 'base/asyncstuntcpsocket.cc', | 20 'base/asyncstuntcpsocket.cc', |
21 'base/asyncstuntcpsocket.h', | 21 'base/asyncstuntcpsocket.h', |
22 'base/basicpacketsocketfactory.cc', | 22 'base/basicpacketsocketfactory.cc', |
23 'base/basicpacketsocketfactory.h', | 23 'base/basicpacketsocketfactory.h', |
24 'base/candidate.h', | 24 'base/candidate.h', |
25 'base/common.h', | 25 'base/common.h', |
| 26 'base/dtlstransport.h', |
26 'base/dtlstransportchannel.cc', | 27 'base/dtlstransportchannel.cc', |
27 'base/dtlstransportchannel.h', | 28 'base/dtlstransportchannel.h', |
28 'base/p2pconstants.cc', | 29 'base/p2pconstants.cc', |
29 'base/p2pconstants.h', | 30 'base/p2pconstants.h', |
30 'base/p2ptransport.cc', | 31 'base/p2ptransport.cc', |
31 'base/p2ptransport.h', | 32 'base/p2ptransport.h', |
32 'base/p2ptransportchannel.cc', | 33 'base/p2ptransportchannel.cc', |
33 'base/p2ptransportchannel.h', | 34 'base/p2ptransportchannel.h', |
34 'base/packetsocketfactory.h', | 35 'base/packetsocketfactory.h', |
35 'base/port.cc', | 36 'base/port.cc', |
36 'base/port.h', | 37 'base/port.h', |
37 'base/portallocator.cc', | 38 'base/portallocator.cc', |
38 'base/portallocator.h', | 39 'base/portallocator.h', |
39 'base/portinterface.h', | 40 'base/portinterface.h', |
40 'base/pseudotcp.cc', | 41 'base/pseudotcp.cc', |
41 'base/pseudotcp.h', | 42 'base/pseudotcp.h', |
42 'base/relayport.cc', | 43 'base/relayport.cc', |
43 'base/relayport.h', | 44 'base/relayport.h', |
44 'base/relayserver.cc', | 45 'base/session.cc', |
45 'base/relayserver.h', | 46 'base/session.h', |
46 'base/sessiondescription.cc', | 47 'base/sessiondescription.cc', |
47 'base/sessiondescription.h', | 48 'base/sessiondescription.h', |
48 'base/sessionid.h', | 49 'base/sessionid.h', |
49 'base/stun.cc', | 50 'base/stun.cc', |
50 'base/stun.h', | 51 'base/stun.h', |
51 'base/stunport.cc', | 52 'base/stunport.cc', |
52 'base/stunport.h', | 53 'base/stunport.h', |
53 'base/stunrequest.cc', | 54 'base/stunrequest.cc', |
54 'base/stunrequest.h', | 55 'base/stunrequest.h', |
55 'base/stunserver.cc', | |
56 'base/stunserver.h', | |
57 'base/tcpport.cc', | 56 'base/tcpport.cc', |
58 'base/tcpport.h', | 57 'base/tcpport.h', |
59 'base/transport.cc', | 58 'base/transport.cc', |
60 'base/transport.h', | 59 'base/transport.h', |
61 'base/transportchannel.cc', | 60 'base/transportchannel.cc', |
62 'base/transportchannel.h', | 61 'base/transportchannel.h', |
63 'base/transportchannelimpl.h', | 62 'base/transportchannelimpl.h', |
64 'base/transportcontroller.cc', | 63 'base/transportcontroller.cc', |
65 'base/transportcontroller.h', | 64 'base/transportcontroller.h', |
66 'base/transportdescription.cc', | 65 'base/transportdescription.cc', |
67 'base/transportdescription.h', | 66 'base/transportdescription.h', |
68 'base/transportdescriptionfactory.cc', | 67 'base/transportdescriptionfactory.cc', |
69 'base/transportdescriptionfactory.h', | 68 'base/transportdescriptionfactory.h', |
70 'base/transportinfo.h', | 69 'base/transportinfo.h', |
71 'base/turnport.cc', | 70 'base/turnport.cc', |
72 'base/turnport.h', | 71 'base/turnport.h', |
73 'base/turnserver.cc', | |
74 'base/turnserver.h', | |
75 'base/udpport.h', | 72 'base/udpport.h', |
76 'client/basicportallocator.cc', | 73 'client/basicportallocator.cc', |
77 'client/basicportallocator.h', | 74 'client/basicportallocator.h', |
78 'client/httpportallocator.cc', | 75 'client/httpportallocator.cc', |
79 'client/httpportallocator.h', | 76 'client/httpportallocator.h', |
80 'client/socketmonitor.cc', | 77 'client/socketmonitor.cc', |
81 'client/socketmonitor.h', | 78 'client/socketmonitor.h', |
82 ], | 79 ], |
83 'direct_dependent_settings': { | 80 'direct_dependent_settings': { |
84 'defines': [ | 81 'defines': [ |
85 'FEATURE_ENABLE_VOICEMAIL', | 82 'FEATURE_ENABLE_VOICEMAIL', |
86 ], | 83 ], |
87 }, | 84 }, |
88 'conditions': [ | 85 'conditions': [ |
89 ['build_with_chromium==0', { | 86 ['build_with_chromium==0', { |
| 87 'sources': [ |
| 88 'base/relayserver.cc', |
| 89 'base/relayserver.h', |
| 90 'base/stunserver.cc', |
| 91 'base/stunserver.h', |
| 92 'base/turnserver.cc', |
| 93 'base/turnserver.h', |
| 94 ], |
90 'defines': [ | 95 'defines': [ |
91 'FEATURE_ENABLE_VOICEMAIL', | 96 'FEATURE_ENABLE_VOICEMAIL', |
92 'FEATURE_ENABLE_PSTN', | 97 'FEATURE_ENABLE_PSTN', |
93 ], | 98 ], |
94 }], | 99 }], |
95 ['use_quic==1', { | 100 ['use_quic==1', { |
96 'dependencies': [ | 101 'dependencies': [ |
97 '<(DEPTH)/third_party/libquic/libquic.gyp:libquic', | 102 '<(DEPTH)/third_party/libquic/libquic.gyp:libquic', |
98 ], | 103 ], |
99 'sources': [ | 104 'sources': [ |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 'libstunprober', | 137 'libstunprober', |
133 'rtc_p2p' | 138 'rtc_p2p' |
134 ], | 139 ], |
135 'sources': [ | 140 'sources': [ |
136 'stunprober/main.cc', | 141 'stunprober/main.cc', |
137 ], | 142 ], |
138 }, | 143 }, |
139 ], # targets | 144 ], # targets |
140 } | 145 } |
141 | 146 |
OLD | NEW |