Chromium Code Reviews

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

Issue 2632613002: Adding OrtcFactory, and changing UdpTransport to match current plan. (Closed)
Patch Set: Splitting proxy changes from this CL Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
« no previous file with comments | « no previous file | webrtc/api/ortcfactory.h » ('j') | webrtc/api/ortcfactory.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2015 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 if (is_android) { 10 if (is_android) {
(...skipping 57 matching lines...)
68 "mediacontroller.h", 68 "mediacontroller.h",
69 "mediastream.cc", 69 "mediastream.cc",
70 "mediastream.h", 70 "mediastream.h",
71 "mediastreaminterface.h", 71 "mediastreaminterface.h",
72 "mediastreamobserver.cc", 72 "mediastreamobserver.cc",
73 "mediastreamobserver.h", 73 "mediastreamobserver.h",
74 "mediastreamproxy.h", 74 "mediastreamproxy.h",
75 "mediastreamtrack.h", 75 "mediastreamtrack.h",
76 "mediastreamtrackproxy.h", 76 "mediastreamtrackproxy.h",
77 "notifier.h", 77 "notifier.h",
78 "ortcfactory.cc",
79 "ortcfactory.h",
78 "peerconnection.cc", 80 "peerconnection.cc",
79 "peerconnection.h", 81 "peerconnection.h",
80 "peerconnectionfactory.cc", 82 "peerconnectionfactory.cc",
81 "peerconnectionfactory.h", 83 "peerconnectionfactory.h",
82 "peerconnectionfactoryproxy.h", 84 "peerconnectionfactoryproxy.h",
83 "peerconnectioninterface.h", 85 "peerconnectioninterface.h",
84 "peerconnectionproxy.h", 86 "peerconnectionproxy.h",
85 "proxy.h", 87 "proxy.h",
86 "remoteaudiosource.cc", 88 "remoteaudiosource.cc",
87 "remoteaudiosource.h", 89 "remoteaudiosource.h",
88 "rtcstatscollector.cc", 90 "rtcstatscollector.cc",
89 "rtcstatscollector.h", 91 "rtcstatscollector.h",
90 "rtpparameters.h", 92 "rtpparameters.h",
91 "rtpreceiver.cc", 93 "rtpreceiver.cc",
92 "rtpreceiver.h", 94 "rtpreceiver.h",
93 "rtpreceiverinterface.h", 95 "rtpreceiverinterface.h",
94 "rtpsender.cc", 96 "rtpsender.cc",
95 "rtpsender.h", 97 "rtpsender.h",
96 "rtpsenderinterface.h", 98 "rtpsenderinterface.h",
97 "sctputils.cc", 99 "sctputils.cc",
98 "sctputils.h", 100 "sctputils.h",
99 "statscollector.cc", 101 "statscollector.cc",
100 "statscollector.h", 102 "statscollector.h",
101 "statstypes.cc", 103 "statstypes.cc",
102 "statstypes.h", 104 "statstypes.h",
103 "streamcollection.h", 105 "streamcollection.h",
106 "udptransportinterface.h",
104 "videocapturertracksource.cc", 107 "videocapturertracksource.cc",
105 "videocapturertracksource.h", 108 "videocapturertracksource.h",
106 "videosourceproxy.h", 109 "videosourceproxy.h",
107 "videotrack.cc", 110 "videotrack.cc",
108 "videotrack.h", 111 "videotrack.h",
109 "videotracksource.cc", 112 "videotracksource.cc",
110 "videotracksource.h", 113 "videotracksource.h",
111 "webrtcsdp.cc", 114 "webrtcsdp.cc",
112 "webrtcsdp.h", 115 "webrtcsdp.h",
113 "webrtcsession.cc", 116 "webrtcsession.cc",
(...skipping 113 matching lines...)
227 rtc_test("peerconnection_unittests") { 230 rtc_test("peerconnection_unittests") {
228 check_includes = false # TODO(kjellander): Remove (bugs.webrtc.org/6828) 231 check_includes = false # TODO(kjellander): Remove (bugs.webrtc.org/6828)
229 testonly = true 232 testonly = true
230 sources = [ 233 sources = [
231 "datachannel_unittest.cc", 234 "datachannel_unittest.cc",
232 "dtmfsender_unittest.cc", 235 "dtmfsender_unittest.cc",
233 "jsepsessiondescription_unittest.cc", 236 "jsepsessiondescription_unittest.cc",
234 "localaudiosource_unittest.cc", 237 "localaudiosource_unittest.cc",
235 "mediaconstraintsinterface_unittest.cc", 238 "mediaconstraintsinterface_unittest.cc",
236 "mediastream_unittest.cc", 239 "mediastream_unittest.cc",
240 "ortcfactory_unittest.cc",
237 "peerconnection_unittest.cc", 241 "peerconnection_unittest.cc",
238 "peerconnectionendtoend_unittest.cc", 242 "peerconnectionendtoend_unittest.cc",
239 "peerconnectionfactory_unittest.cc", 243 "peerconnectionfactory_unittest.cc",
240 "peerconnectioninterface_unittest.cc", 244 "peerconnectioninterface_unittest.cc",
241 "proxy_unittest.cc", 245 "proxy_unittest.cc",
242 "rtcstats_integrationtest.cc", 246 "rtcstats_integrationtest.cc",
243 "rtcstatscollector_unittest.cc", 247 "rtcstatscollector_unittest.cc",
244 "rtpsenderreceiver_unittest.cc", 248 "rtpsenderreceiver_unittest.cc",
245 "sctputils_unittest.cc", 249 "sctputils_unittest.cc",
246 "statscollector_unittest.cc", 250 "statscollector_unittest.cc",
(...skipping 106 matching lines...)
353 deps = [ 357 deps = [
354 ":libjingle_peerconnection", 358 ":libjingle_peerconnection",
355 "../base:rtc_base_approved", 359 "../base:rtc_base_approved",
356 ] 360 ]
357 if (!build_with_chromium && is_clang) { 361 if (!build_with_chromium && is_clang) {
358 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 362 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
359 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 363 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
360 } 364 }
361 } 365 }
362 } 366 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/api/ortcfactory.h » ('j') | webrtc/api/ortcfactory.h » ('J')

Powered by Google App Engine