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

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

Issue 2377883003: First step in providing a UdpTransportChannel. (Closed)
Patch Set: Fix signed / unsigned assignment in unittest. Created 4 years, 1 month 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/BUILD.gn ('k') | webrtc/p2p/base/udptransportchannel.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
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 "base/transportcontroller.cc", 67 "base/transportcontroller.cc",
68 "base/transportcontroller.h", 68 "base/transportcontroller.h",
69 "base/transportdescription.cc", 69 "base/transportdescription.cc",
70 "base/transportdescription.h", 70 "base/transportdescription.h",
71 "base/transportdescriptionfactory.cc", 71 "base/transportdescriptionfactory.cc",
72 "base/transportdescriptionfactory.h", 72 "base/transportdescriptionfactory.h",
73 "base/transportinfo.h", 73 "base/transportinfo.h",
74 "base/turnport.cc", 74 "base/turnport.cc",
75 "base/turnport.h", 75 "base/turnport.h",
76 "base/udpport.h", 76 "base/udpport.h",
77 "base/udptransportchannel.cc",
78 "base/udptransportchannel.h",
77 "client/basicportallocator.cc", 79 "client/basicportallocator.cc",
78 "client/basicportallocator.h", 80 "client/basicportallocator.h",
79 "client/socketmonitor.cc", 81 "client/socketmonitor.cc",
80 "client/socketmonitor.h", 82 "client/socketmonitor.h",
81 ] 83 ]
82 84
83 defines = [ "FEATURE_ENABLE_SSL" ] 85 defines = [ "FEATURE_ENABLE_SSL" ]
84 86
85 deps = [ 87 deps = [
86 "../base:rtc_base", 88 "../base:rtc_base",
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 # Suppress warnings from Chrome's Clang plugins. 150 # Suppress warnings from Chrome's Clang plugins.
149 # 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.
150 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 152 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
151 } 153 }
152 154
153 deps = [ 155 deps = [
154 "..:webrtc_common", 156 "..:webrtc_common",
155 "../base:rtc_base", 157 "../base:rtc_base",
156 ] 158 ]
157 } 159 }
OLDNEW
« no previous file with comments | « webrtc/BUILD.gn ('k') | webrtc/p2p/base/udptransportchannel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698