| OLD | NEW |
| 1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2016 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 import("../build/webrtc.gni") | 9 import("../build/webrtc.gni") |
| 10 | 10 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 "base/dtlstransport.h", | 29 "base/dtlstransport.h", |
| 30 "base/dtlstransportchannel.cc", | 30 "base/dtlstransportchannel.cc", |
| 31 "base/dtlstransportchannel.h", | 31 "base/dtlstransportchannel.h", |
| 32 "base/p2pconstants.cc", | 32 "base/p2pconstants.cc", |
| 33 "base/p2pconstants.h", | 33 "base/p2pconstants.h", |
| 34 "base/p2ptransport.cc", | 34 "base/p2ptransport.cc", |
| 35 "base/p2ptransport.h", | 35 "base/p2ptransport.h", |
| 36 "base/p2ptransportchannel.cc", | 36 "base/p2ptransportchannel.cc", |
| 37 "base/p2ptransportchannel.h", | 37 "base/p2ptransportchannel.h", |
| 38 "base/packetsocketfactory.h", | 38 "base/packetsocketfactory.h", |
| 39 "base/packettransportinterface.h", |
| 39 "base/port.cc", | 40 "base/port.cc", |
| 40 "base/port.h", | 41 "base/port.h", |
| 41 "base/portallocator.cc", | 42 "base/portallocator.cc", |
| 42 "base/portallocator.h", | 43 "base/portallocator.h", |
| 43 "base/portinterface.h", | 44 "base/portinterface.h", |
| 44 "base/pseudotcp.cc", | 45 "base/pseudotcp.cc", |
| 45 "base/pseudotcp.h", | 46 "base/pseudotcp.h", |
| 46 "base/relayport.cc", | 47 "base/relayport.cc", |
| 47 "base/relayport.h", | 48 "base/relayport.h", |
| 48 "base/session.cc", | 49 "base/session.cc", |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 169 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 169 } | 170 } |
| 170 | 171 |
| 171 deps = [ | 172 deps = [ |
| 172 ":libstunprober", | 173 ":libstunprober", |
| 173 ":rtc_p2p", | 174 ":rtc_p2p", |
| 174 "../system_wrappers:field_trial_default", | 175 "../system_wrappers:field_trial_default", |
| 175 ] | 176 ] |
| 176 } | 177 } |
| 177 } | 178 } |
| OLD | NEW |