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

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

Issue 2632613002: Adding OrtcFactory, and changing UdpTransport to match current plan. (Closed)
Patch Set: Rebase and remove worker_thread from API Created 3 years, 11 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
« no previous file with comments | « no previous file | webrtc/api/ortcfactory.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) 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...) Expand 10 before | Expand all | Expand 10 after
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",
80 "ortcfactoryinterface.h",
78 "peerconnection.cc", 81 "peerconnection.cc",
79 "peerconnection.h", 82 "peerconnection.h",
80 "peerconnectionfactory.cc", 83 "peerconnectionfactory.cc",
81 "peerconnectionfactory.h", 84 "peerconnectionfactory.h",
82 "peerconnectionfactoryproxy.h", 85 "peerconnectionfactoryproxy.h",
83 "peerconnectioninterface.h", 86 "peerconnectioninterface.h",
84 "peerconnectionproxy.h", 87 "peerconnectionproxy.h",
85 "proxy.h", 88 "proxy.h",
86 "remoteaudiosource.cc", 89 "remoteaudiosource.cc",
87 "remoteaudiosource.h", 90 "remoteaudiosource.h",
88 "rtcstatscollector.cc", 91 "rtcstatscollector.cc",
89 "rtcstatscollector.h", 92 "rtcstatscollector.h",
90 "rtpparameters.h", 93 "rtpparameters.h",
91 "rtpreceiver.cc", 94 "rtpreceiver.cc",
92 "rtpreceiver.h", 95 "rtpreceiver.h",
93 "rtpreceiverinterface.h", 96 "rtpreceiverinterface.h",
94 "rtpsender.cc", 97 "rtpsender.cc",
95 "rtpsender.h", 98 "rtpsender.h",
96 "rtpsenderinterface.h", 99 "rtpsenderinterface.h",
97 "sctputils.cc", 100 "sctputils.cc",
98 "sctputils.h", 101 "sctputils.h",
99 "statscollector.cc", 102 "statscollector.cc",
100 "statscollector.h", 103 "statscollector.h",
101 "statstypes.cc", 104 "statstypes.cc",
102 "statstypes.h", 105 "statstypes.h",
103 "streamcollection.h", 106 "streamcollection.h",
104 "trackmediainfomap.cc", 107 "trackmediainfomap.cc",
105 "trackmediainfomap.h", 108 "trackmediainfomap.h",
109 "udptransportinterface.h",
106 "videocapturertracksource.cc", 110 "videocapturertracksource.cc",
107 "videocapturertracksource.h", 111 "videocapturertracksource.h",
108 "videosourceproxy.h", 112 "videosourceproxy.h",
109 "videotrack.cc", 113 "videotrack.cc",
110 "videotrack.h", 114 "videotrack.h",
111 "videotracksource.cc", 115 "videotracksource.cc",
112 "videotracksource.h", 116 "videotracksource.h",
113 "webrtcsdp.cc", 117 "webrtcsdp.cc",
114 "webrtcsdp.h", 118 "webrtcsdp.h",
115 "webrtcsession.cc", 119 "webrtcsession.cc",
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 rtc_test("peerconnection_unittests") { 233 rtc_test("peerconnection_unittests") {
230 check_includes = false # TODO(kjellander): Remove (bugs.webrtc.org/6828) 234 check_includes = false # TODO(kjellander): Remove (bugs.webrtc.org/6828)
231 testonly = true 235 testonly = true
232 sources = [ 236 sources = [
233 "datachannel_unittest.cc", 237 "datachannel_unittest.cc",
234 "dtmfsender_unittest.cc", 238 "dtmfsender_unittest.cc",
235 "jsepsessiondescription_unittest.cc", 239 "jsepsessiondescription_unittest.cc",
236 "localaudiosource_unittest.cc", 240 "localaudiosource_unittest.cc",
237 "mediaconstraintsinterface_unittest.cc", 241 "mediaconstraintsinterface_unittest.cc",
238 "mediastream_unittest.cc", 242 "mediastream_unittest.cc",
243 "ortcfactory_unittest.cc",
239 "peerconnection_unittest.cc", 244 "peerconnection_unittest.cc",
240 "peerconnectionendtoend_unittest.cc", 245 "peerconnectionendtoend_unittest.cc",
241 "peerconnectionfactory_unittest.cc", 246 "peerconnectionfactory_unittest.cc",
242 "peerconnectioninterface_unittest.cc", 247 "peerconnectioninterface_unittest.cc",
243 "proxy_unittest.cc", 248 "proxy_unittest.cc",
244 "rtcstats_integrationtest.cc", 249 "rtcstats_integrationtest.cc",
245 "rtcstatscollector_unittest.cc", 250 "rtcstatscollector_unittest.cc",
246 "rtpsenderreceiver_unittest.cc", 251 "rtpsenderreceiver_unittest.cc",
247 "sctputils_unittest.cc", 252 "sctputils_unittest.cc",
248 "statscollector_unittest.cc", 253 "statscollector_unittest.cc",
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 deps = [ 363 deps = [
359 ":libjingle_peerconnection", 364 ":libjingle_peerconnection",
360 "../base:rtc_base_approved", 365 "../base:rtc_base_approved",
361 ] 366 ]
362 if (!build_with_chromium && is_clang) { 367 if (!build_with_chromium && is_clang) {
363 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 368 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
364 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 369 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
365 } 370 }
366 } 371 }
367 } 372 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/api/ortcfactory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698