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', ], |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 'base/transportcontroller.cc', | 62 'base/transportcontroller.cc', |
63 'base/transportcontroller.h', | 63 'base/transportcontroller.h', |
64 'base/transportdescription.cc', | 64 'base/transportdescription.cc', |
65 'base/transportdescription.h', | 65 'base/transportdescription.h', |
66 'base/transportdescriptionfactory.cc', | 66 'base/transportdescriptionfactory.cc', |
67 'base/transportdescriptionfactory.h', | 67 'base/transportdescriptionfactory.h', |
68 'base/transportinfo.h', | 68 'base/transportinfo.h', |
69 'base/turnport.cc', | 69 'base/turnport.cc', |
70 'base/turnport.h', | 70 'base/turnport.h', |
71 'base/udpport.h', | 71 'base/udpport.h', |
| 72 'base/udptransport.cc', |
| 73 'base/udptransport.h', |
| 74 'base/udptransportchannel.cc', |
| 75 'base/udptransportchannel.h', |
72 'client/basicportallocator.cc', | 76 'client/basicportallocator.cc', |
73 'client/basicportallocator.h', | 77 'client/basicportallocator.h', |
74 'client/socketmonitor.cc', | 78 'client/socketmonitor.cc', |
75 'client/socketmonitor.h', | 79 'client/socketmonitor.h', |
76 ], | 80 ], |
77 'direct_dependent_settings': { | 81 'direct_dependent_settings': { |
78 'defines': [ | 82 'defines': [ |
79 'FEATURE_ENABLE_VOICEMAIL', | 83 'FEATURE_ENABLE_VOICEMAIL', |
80 ], | 84 ], |
81 }, | 85 }, |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 'libstunprober', | 138 'libstunprober', |
135 'rtc_p2p' | 139 'rtc_p2p' |
136 ], | 140 ], |
137 'sources': [ | 141 'sources': [ |
138 'stunprober/main.cc', | 142 'stunprober/main.cc', |
139 ], | 143 ], |
140 }, | 144 }, |
141 ], # targets | 145 ], # targets |
142 } | 146 } |
143 | 147 |
OLD | NEW |