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

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

Issue 2377883003: First step in providing a UdpTransportChannel. (Closed)
Patch Set: Fix signed / unsigned comparison in test code. Created 4 years, 2 months 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
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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 "base/transportinfo.h", 71 "base/transportinfo.h",
72 "base/turnport.cc", 72 "base/turnport.cc",
73 "base/turnport.h", 73 "base/turnport.h",
74 "base/udpport.h", 74 "base/udpport.h",
75 "client/basicportallocator.cc", 75 "client/basicportallocator.cc",
76 "client/basicportallocator.h", 76 "client/basicportallocator.h",
77 "client/httpportallocator.cc", 77 "client/httpportallocator.cc",
78 "client/httpportallocator.h", 78 "client/httpportallocator.h",
79 "client/socketmonitor.cc", 79 "client/socketmonitor.cc",
80 "client/socketmonitor.h", 80 "client/socketmonitor.h",
81 "rawudp/rawudptransport.cc",
82 "rawudp/rawudptransport.h",
83 "rawudp/rawudptransportchannel.cc",
84 "rawudp/rawudptransportchannel.h",
81 ] 85 ]
82 86
83 defines = [ "FEATURE_ENABLE_SSL" ] 87 defines = [ "FEATURE_ENABLE_SSL" ]
84 88
85 deps = [ 89 deps = [
86 "../base:rtc_base", 90 "../base:rtc_base",
87 "../libjingle/xmllite", 91 "../libjingle/xmllite",
88 ] 92 ]
89 93
90 if (rtc_build_expat) { 94 if (rtc_build_expat) {
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 175 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
172 } 176 }
173 177
174 deps = [ 178 deps = [
175 ":libstunprober", 179 ":libstunprober",
176 ":rtc_p2p", 180 ":rtc_p2p",
177 "../system_wrappers:field_trial_default", 181 "../system_wrappers:field_trial_default",
178 ] 182 ]
179 } 183 }
180 } 184 }
OLDNEW
« no previous file with comments | « webrtc/BUILD.gn ('k') | webrtc/p2p/p2p.gyp » ('j') | webrtc/p2p/rawudp/rawudptransportchannel.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698