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

Side by Side Diff: webrtc/p2p/BUILD.gn

Issue 2553043004: Revert of Refactoring that removes P2PTransport and DtlsTransport classes. (Closed)
Patch Set: Created 4 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
« no previous file with comments | « webrtc/api/statscollector_unittest.cc ('k') | webrtc/p2p/base/dtlstransport.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
11 group("p2p") { 11 group("p2p") {
12 public_deps = [ 12 public_deps = [
13 ":libstunprober", 13 ":libstunprober",
14 ":rtc_p2p", 14 ":rtc_p2p",
15 ] 15 ]
16 } 16 }
17 17
18 config("rtc_p2p_inherited_config") { 18 config("rtc_p2p_inherited_config") {
19 defines = [ "FEATURE_ENABLE_VOICEMAIL" ] 19 defines = [ "FEATURE_ENABLE_VOICEMAIL" ]
20 } 20 }
21 21
22 rtc_static_library("rtc_p2p") { 22 rtc_static_library("rtc_p2p") {
23 sources = [ 23 sources = [
24 "base/asyncstuntcpsocket.cc", 24 "base/asyncstuntcpsocket.cc",
25 "base/asyncstuntcpsocket.h", 25 "base/asyncstuntcpsocket.h",
26 "base/basicpacketsocketfactory.cc", 26 "base/basicpacketsocketfactory.cc",
27 "base/basicpacketsocketfactory.h", 27 "base/basicpacketsocketfactory.h",
28 "base/candidate.h", 28 "base/candidate.h",
29 "base/common.h", 29 "base/common.h",
30 "base/dtlstransport.h",
30 "base/dtlstransportchannel.cc", 31 "base/dtlstransportchannel.cc",
31 "base/dtlstransportchannel.h", 32 "base/dtlstransportchannel.h",
32 "base/jseptransport.cc",
33 "base/jseptransport.h",
34 "base/p2pconstants.cc", 33 "base/p2pconstants.cc",
35 "base/p2pconstants.h", 34 "base/p2pconstants.h",
35 "base/p2ptransport.cc",
36 "base/p2ptransport.h",
36 "base/p2ptransportchannel.cc", 37 "base/p2ptransportchannel.cc",
37 "base/p2ptransportchannel.h", 38 "base/p2ptransportchannel.h",
38 "base/packetsocketfactory.h", 39 "base/packetsocketfactory.h",
39 "base/packettransportinterface.h", 40 "base/packettransportinterface.h",
40 "base/port.cc", 41 "base/port.cc",
41 "base/port.h", 42 "base/port.h",
42 "base/portallocator.cc", 43 "base/portallocator.cc",
43 "base/portallocator.h", 44 "base/portallocator.h",
44 "base/portinterface.h", 45 "base/portinterface.h",
45 "base/pseudotcp.cc", 46 "base/pseudotcp.cc",
46 "base/pseudotcp.h", 47 "base/pseudotcp.h",
47 "base/relayport.cc", 48 "base/relayport.cc",
48 "base/relayport.h", 49 "base/relayport.h",
49 "base/session.cc", 50 "base/session.cc",
50 "base/session.h", 51 "base/session.h",
51 "base/sessiondescription.cc", 52 "base/sessiondescription.cc",
52 "base/sessiondescription.h", 53 "base/sessiondescription.h",
53 "base/stun.cc", 54 "base/stun.cc",
54 "base/stun.h", 55 "base/stun.h",
55 "base/stunport.cc", 56 "base/stunport.cc",
56 "base/stunport.h", 57 "base/stunport.h",
57 "base/stunrequest.cc", 58 "base/stunrequest.cc",
58 "base/stunrequest.h", 59 "base/stunrequest.h",
59 "base/tcpport.cc", 60 "base/tcpport.cc",
60 "base/tcpport.h", 61 "base/tcpport.h",
62 "base/transport.cc",
63 "base/transport.h",
61 "base/transportchannel.cc", 64 "base/transportchannel.cc",
62 "base/transportchannel.h", 65 "base/transportchannel.h",
63 "base/transportchannelimpl.h", 66 "base/transportchannelimpl.h",
64 "base/transportcontroller.cc", 67 "base/transportcontroller.cc",
65 "base/transportcontroller.h", 68 "base/transportcontroller.h",
66 "base/transportdescription.cc", 69 "base/transportdescription.cc",
67 "base/transportdescription.h", 70 "base/transportdescription.h",
68 "base/transportdescriptionfactory.cc", 71 "base/transportdescriptionfactory.cc",
69 "base/transportdescriptionfactory.h", 72 "base/transportdescriptionfactory.h",
70 "base/transportinfo.h", 73 "base/transportinfo.h",
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 # Suppress warnings from Chrome's Clang plugins. 150 # Suppress warnings from Chrome's Clang plugins.
148 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 151 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
149 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 152 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
150 } 153 }
151 154
152 deps = [ 155 deps = [
153 "..:webrtc_common", 156 "..:webrtc_common",
154 "../base:rtc_base", 157 "../base:rtc_base",
155 ] 158 ]
156 } 159 }
OLDNEW
« no previous file with comments | « webrtc/api/statscollector_unittest.cc ('k') | webrtc/p2p/base/dtlstransport.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698