blob: 2caa756928bd46c78e8250f356a2d325b658f77f [file] [log] [blame]
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001#
2# libjingle
3# Copyright 2012, Google Inc.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are met:
7#
8# 1. Redistributions of source code must retain the above copyright notice,
9# this list of conditions and the following disclaimer.
10# 2. Redistributions in binary form must reproduce the above copyright notice,
11# this list of conditions and the following disclaimer in the documentation
12# and/or other materials provided with the distribution.
13# 3. The name of the author may not be used to endorse or promote products
14# derived from this software without specific prior written permission.
15#
16# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
17# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
19# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
22# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
23# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
24# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
25# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26#
27
28{
29 'includes': ['build/common.gypi'],
30
31 'conditions': [
32 ['os_posix == 1 and OS != "mac" and OS != "ios"', {
33 'conditions': [
34 ['sysroot!=""', {
35 'variables': {
36 'pkg-config': '../../../build/linux/pkg-config-wrapper "<(sysroot)" "<(target_arch)"',
37 },
38 }, {
39 'variables': {
40 'pkg-config': 'pkg-config'
41 },
42 }],
43 ],
44 }],
henrike@webrtc.org28e20752013-07-10 00:45:36 +000045 ['OS=="linux" or OS=="android"', {
46 'targets': [
47 {
48 'target_name': 'libjingle_peerconnection_so',
49 'type': 'loadable_module',
50 'dependencies': [
51 'libjingle_peerconnection',
52 '<(DEPTH)/third_party/icu/icu.gyp:icuuc',
53 ],
54 'sources': [
55 'app/webrtc/java/jni/peerconnection_jni.cc'
56 ],
57 'conditions': [
58 ['OS=="linux"', {
59 'defines': [
60 'HAVE_GTK',
61 ],
62 'include_dirs': [
63 '<(java_home)/include',
64 '<(java_home)/include/linux',
65 ],
66 'link_settings': {
67 'libraries': [
68 '<!@(pkg-config --libs-only-l gobject-2.0 gthread-2.0'
69 ' gtk+-2.0)',
70 ],
71 },
72 }],
73 ],
74 },
75 {
76 'target_name': 'libjingle_peerconnection_jar',
77 'type': 'none',
78 'actions': [
79 {
80 'variables': {
81 'java_src_dir': 'app/webrtc/java/src',
henrike@webrtc.org9de257d2013-07-17 14:42:53 +000082 'webrtc_modules_dir': '<(webrtc_root)/modules',
henrike@webrtc.org28e20752013-07-10 00:45:36 +000083 'peerconnection_java_files': [
84 'app/webrtc/java/src/org/webrtc/AudioSource.java',
85 'app/webrtc/java/src/org/webrtc/AudioTrack.java',
henrike@webrtc.org723d6832013-07-12 16:04:50 +000086 'app/webrtc/java/src/org/webrtc/DataChannel.java',
henrike@webrtc.org28e20752013-07-10 00:45:36 +000087 'app/webrtc/java/src/org/webrtc/IceCandidate.java',
fischman@webrtc.orgc883fdc2013-08-06 19:00:53 +000088 'app/webrtc/java/src/org/webrtc/Logging.java',
henrike@webrtc.org28e20752013-07-10 00:45:36 +000089 'app/webrtc/java/src/org/webrtc/MediaConstraints.java',
90 'app/webrtc/java/src/org/webrtc/MediaSource.java',
91 'app/webrtc/java/src/org/webrtc/MediaStream.java',
92 'app/webrtc/java/src/org/webrtc/MediaStreamTrack.java',
93 'app/webrtc/java/src/org/webrtc/PeerConnectionFactory.java',
94 'app/webrtc/java/src/org/webrtc/PeerConnection.java',
95 'app/webrtc/java/src/org/webrtc/SdpObserver.java',
96 'app/webrtc/java/src/org/webrtc/StatsObserver.java',
97 'app/webrtc/java/src/org/webrtc/StatsReport.java',
98 'app/webrtc/java/src/org/webrtc/SessionDescription.java',
99 'app/webrtc/java/src/org/webrtc/VideoCapturer.java',
100 'app/webrtc/java/src/org/webrtc/VideoRenderer.java',
101 'app/webrtc/java/src/org/webrtc/VideoSource.java',
102 'app/webrtc/java/src/org/webrtc/VideoTrack.java',
103 ],
104 # TODO(fischman): extract this into a webrtc gyp var that can be
105 # included here, or better yet, build a proper .jar in webrtc
106 # and include it here.
107 'android_java_files': [
henrike@webrtc.org9de257d2013-07-17 14:42:53 +0000108 '<(webrtc_modules_dir)/audio_device/android/java/src/org/webrtc/voiceengine/WebRTCAudioDevice.java',
henrike@webrtc.org82f014a2013-09-10 18:24:07 +0000109 '<(webrtc_modules_dir)/audio_device/android/java/src/org/webrtc/voiceengine/AudioManagerAndroid.java',
henrike@webrtc.org9de257d2013-07-17 14:42:53 +0000110 '<(webrtc_modules_dir)/video_capture/android/java/src/org/webrtc/videoengine/CaptureCapabilityAndroid.java',
111 '<(webrtc_modules_dir)/video_capture/android/java/src/org/webrtc/videoengine/VideoCaptureAndroid.java',
112 '<(webrtc_modules_dir)/video_capture/android/java/src/org/webrtc/videoengine/VideoCaptureDeviceInfoAndroid.java',
113 '<(webrtc_modules_dir)/video_render/android/java/src/org/webrtc/videoengine/ViEAndroidGLES20.java',
114 '<(webrtc_modules_dir)/video_render/android/java/src/org/webrtc/videoengine/ViERenderer.java',
115 '<(webrtc_modules_dir)/video_render/android/java/src/org/webrtc/videoengine/ViESurfaceRenderer.java',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000116 ],
117 },
118 'action_name': 'create_jar',
119 'inputs': [
120 'build/build_jar.sh',
121 '<@(java_files)',
122 ],
123 'outputs': [
124 '<(PRODUCT_DIR)/libjingle_peerconnection.jar',
125 ],
126 'conditions': [
127 ['OS=="android"', {
128 'variables': {
129 'java_files': ['<@(peerconnection_java_files)', '<@(android_java_files)'],
130 'build_classpath': '<(java_src_dir):<(DEPTH)/third_party/android_tools/sdk/platforms/android-<(android_sdk_version)/android.jar',
131 },
132 }, {
133 'variables': {
134 'java_files': ['<@(peerconnection_java_files)'],
135 'build_classpath': '<(java_src_dir)',
136 },
137 }],
138 ],
139 'action': [
140 'build/build_jar.sh', '<(java_home)', '<@(_outputs)',
141 '<(INTERMEDIATE_DIR)',
142 '<(build_classpath)',
143 '<@(java_files)'
144 ],
145 },
146 ],
147 'dependencies': [
148 'libjingle_peerconnection_so',
149 ],
150 },
151 ],
152 }],
fischman@webrtc.orge3de6b12013-08-26 19:31:21 +0000153 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000154 'targets': [
155 {
156 'target_name': 'libjingle_peerconnection_objc',
157 'type': 'static_library',
158 'dependencies': [
159 'libjingle_peerconnection',
160 ],
161 'sources': [
162 'app/webrtc/objc/RTCAudioTrack+Internal.h',
163 'app/webrtc/objc/RTCAudioTrack.mm',
164 'app/webrtc/objc/RTCEnumConverter.h',
165 'app/webrtc/objc/RTCEnumConverter.mm',
166 'app/webrtc/objc/RTCI420Frame.mm',
fischman@webrtc.org1bc19542013-08-01 18:29:45 +0000167 'app/webrtc/objc/RTCICECandidate+Internal.h',
168 'app/webrtc/objc/RTCICECandidate.mm',
169 'app/webrtc/objc/RTCICEServer+Internal.h',
170 'app/webrtc/objc/RTCICEServer.mm',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000171 'app/webrtc/objc/RTCMediaConstraints+Internal.h',
172 'app/webrtc/objc/RTCMediaConstraints.mm',
173 'app/webrtc/objc/RTCMediaConstraintsNative.cc',
174 'app/webrtc/objc/RTCMediaConstraintsNative.h',
175 'app/webrtc/objc/RTCMediaSource+Internal.h',
176 'app/webrtc/objc/RTCMediaSource.mm',
177 'app/webrtc/objc/RTCMediaStream+Internal.h',
178 'app/webrtc/objc/RTCMediaStream.mm',
179 'app/webrtc/objc/RTCMediaStreamTrack+Internal.h',
180 'app/webrtc/objc/RTCMediaStreamTrack.mm',
181 'app/webrtc/objc/RTCPair.m',
182 'app/webrtc/objc/RTCPeerConnection+Internal.h',
183 'app/webrtc/objc/RTCPeerConnection.mm',
184 'app/webrtc/objc/RTCPeerConnectionFactory.mm',
185 'app/webrtc/objc/RTCPeerConnectionObserver.h',
186 'app/webrtc/objc/RTCPeerConnectionObserver.mm',
187 'app/webrtc/objc/RTCSessionDescription+Internal.h',
188 'app/webrtc/objc/RTCSessionDescription.mm',
189 'app/webrtc/objc/RTCVideoCapturer+Internal.h',
190 'app/webrtc/objc/RTCVideoCapturer.mm',
191 'app/webrtc/objc/RTCVideoRenderer+Internal.h',
192 'app/webrtc/objc/RTCVideoRenderer.mm',
193 'app/webrtc/objc/RTCVideoSource+Internal.h',
194 'app/webrtc/objc/RTCVideoSource.mm',
195 'app/webrtc/objc/RTCVideoTrack+Internal.h',
196 'app/webrtc/objc/RTCVideoTrack.mm',
197 'app/webrtc/objc/public/RTCAudioSource.h',
198 'app/webrtc/objc/public/RTCAudioTrack.h',
199 'app/webrtc/objc/public/RTCI420Frame.h',
fischman@webrtc.org1bc19542013-08-01 18:29:45 +0000200 'app/webrtc/objc/public/RTCICECandidate.h',
201 'app/webrtc/objc/public/RTCICEServer.h',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000202 'app/webrtc/objc/public/RTCMediaConstraints.h',
203 'app/webrtc/objc/public/RTCMediaSource.h',
204 'app/webrtc/objc/public/RTCMediaStream.h',
205 'app/webrtc/objc/public/RTCMediaStreamTrack.h',
206 'app/webrtc/objc/public/RTCPair.h',
207 'app/webrtc/objc/public/RTCPeerConnection.h',
208 'app/webrtc/objc/public/RTCPeerConnectionDelegate.h',
209 'app/webrtc/objc/public/RTCPeerConnectionFactory.h',
210 'app/webrtc/objc/public/RTCSessionDescription.h',
211 'app/webrtc/objc/public/RTCSessionDescriptonDelegate.h',
212 'app/webrtc/objc/public/RTCTypes.h',
213 'app/webrtc/objc/public/RTCVideoCapturer.h',
214 'app/webrtc/objc/public/RTCVideoRenderer.h',
215 'app/webrtc/objc/public/RTCVideoRendererDelegate.h',
216 'app/webrtc/objc/public/RTCVideoSource.h',
217 'app/webrtc/objc/public/RTCVideoTrack.h',
218 ],
fischman@webrtc.org1bc19542013-08-01 18:29:45 +0000219 'direct_dependent_settings': {
220 'include_dirs': [
221 '<(DEPTH)/talk/app/webrtc/objc/public',
222 ],
223 },
fischman@webrtc.orgccddd0a2013-09-19 20:27:32 +0000224 'all_dependent_settings': {
225 'libraries': [
226 '-lstdc++',
227 ],
228 },
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000229 'include_dirs': [
230 '<(DEPTH)/talk/app/webrtc',
231 '<(DEPTH)/talk/app/webrtc/objc',
232 '<(DEPTH)/talk/app/webrtc/objc/public',
233 ],
234 'link_settings': {
235 'libraries': [
236 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
237 ],
238 },
239 'xcode_settings': {
240 'CLANG_ENABLE_OBJC_ARC': 'YES',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000241 },
fischman@webrtc.orge3de6b12013-08-26 19:31:21 +0000242 }, # target libjingle_peerconnection_objc
243 ],
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000244 }],
245 ],
246
247 'targets': [
248 {
249 'target_name': 'libjingle',
250 'type': 'static_library',
251 'dependencies': [
252 '<(DEPTH)/third_party/expat/expat.gyp:expat',
253 '<(DEPTH)/third_party/jsoncpp/jsoncpp.gyp:jsoncpp',
254 ],
255 'export_dependent_settings': [
256 '<(DEPTH)/third_party/expat/expat.gyp:expat',
257 '<(DEPTH)/third_party/jsoncpp/jsoncpp.gyp:jsoncpp',
258 ],
259 'sources': [
260 'base/asyncfile.cc',
261 'base/asyncfile.h',
262 'base/asynchttprequest.cc',
263 'base/asynchttprequest.h',
264 'base/asyncpacketsocket.h',
265 'base/asyncsocket.cc',
266 'base/asyncsocket.h',
267 'base/asynctcpsocket.cc',
268 'base/asynctcpsocket.h',
269 'base/asyncudpsocket.cc',
270 'base/asyncudpsocket.h',
271 'base/atomicops.h',
272 'base/autodetectproxy.cc',
273 'base/autodetectproxy.h',
274 'base/bandwidthsmoother.cc',
275 'base/bandwidthsmoother.h',
276 'base/base64.cc',
277 'base/base64.h',
278 'base/basicdefs.h',
279 'base/basictypes.h',
280 'base/bind.h',
281 'base/buffer.h',
282 'base/bytebuffer.cc',
283 'base/bytebuffer.h',
284 'base/byteorder.h',
285 'base/checks.cc',
286 'base/checks.h',
287 'base/common.cc',
288 'base/common.h',
289 'base/constructormagic.h',
290 'base/cpumonitor.cc',
291 'base/cpumonitor.h',
292 'base/crc32.cc',
293 'base/crc32.h',
294 'base/criticalsection.h',
295 'base/cryptstring.h',
296 'base/diskcache.cc',
297 'base/diskcache.h',
298 'base/event.cc',
299 'base/event.h',
300 'base/filelock.cc',
301 'base/filelock.h',
302 'base/fileutils.cc',
303 'base/fileutils.h',
304 'base/fileutils_mock.h',
305 'base/firewallsocketserver.cc',
306 'base/firewallsocketserver.h',
307 'base/flags.cc',
308 'base/flags.h',
309 'base/gunit_prod.h',
310 'base/helpers.cc',
311 'base/helpers.h',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000312 'base/httpbase.cc',
313 'base/httpbase.h',
314 'base/httpclient.cc',
315 'base/httpclient.h',
316 'base/httpcommon-inl.h',
317 'base/httpcommon.cc',
318 'base/httpcommon.h',
319 'base/httprequest.cc',
320 'base/httprequest.h',
321 'base/httpserver.cc',
322 'base/httpserver.h',
323 'base/ifaddrs-android.cc',
324 'base/ifaddrs-android.h',
325 'base/ipaddress.cc',
326 'base/ipaddress.h',
327 'base/json.cc',
328 'base/json.h',
329 'base/linked_ptr.h',
330 'base/linuxfdwalk.h',
331 'base/logging.cc',
332 'base/logging.h',
333 'base/maccocoathreadhelper.h',
334 'base/maccocoathreadhelper.mm',
335 'base/mathutils.h',
336 'base/md5.cc',
337 'base/md5.h',
338 'base/md5digest.h',
339 'base/messagedigest.cc',
340 'base/messagedigest.h',
341 'base/messagehandler.cc',
342 'base/messagehandler.h',
343 'base/messagequeue.cc',
344 'base/messagequeue.h',
345 'base/multipart.cc',
346 'base/multipart.h',
347 'base/natserver.cc',
348 'base/natserver.h',
349 'base/natsocketfactory.cc',
350 'base/natsocketfactory.h',
351 'base/nattypes.cc',
352 'base/nattypes.h',
353 'base/nethelpers.cc',
354 'base/nethelpers.h',
355 'base/network.cc',
356 'base/network.h',
357 'base/nssidentity.cc',
358 'base/nssidentity.h',
359 'base/nssstreamadapter.cc',
360 'base/nssstreamadapter.h',
361 'base/nullsocketserver.h',
362 'base/optionsfile.cc',
363 'base/optionsfile.h',
364 'base/pathutils.cc',
365 'base/pathutils.h',
366 'base/physicalsocketserver.cc',
367 'base/physicalsocketserver.h',
368 'base/profiler.cc',
369 'base/profiler.h',
370 'base/proxydetect.cc',
371 'base/proxydetect.h',
372 'base/proxyinfo.cc',
373 'base/proxyinfo.h',
374 'base/proxyserver.cc',
375 'base/proxyserver.h',
376 'base/ratelimiter.cc',
377 'base/ratelimiter.h',
378 'base/ratetracker.cc',
379 'base/ratetracker.h',
380 'base/refcount.h',
381 'base/referencecountedsingletonfactory.h',
382 'base/rollingaccumulator.h',
383 'base/scoped_autorelease_pool.h',
384 'base/scoped_ptr.h',
385 'base/scoped_ref_ptr.h',
386 'base/sec_buffer.h',
387 'base/sha1.cc',
388 'base/sha1.h',
389 'base/sha1digest.h',
390 'base/sharedexclusivelock.cc',
391 'base/sharedexclusivelock.h',
392 'base/signalthread.cc',
393 'base/signalthread.h',
394 'base/sigslot.h',
395 'base/sigslotrepeater.h',
396 'base/socket.h',
397 'base/socketadapters.cc',
398 'base/socketadapters.h',
399 'base/socketaddress.cc',
400 'base/socketaddress.h',
401 'base/socketaddresspair.cc',
402 'base/socketaddresspair.h',
403 'base/socketfactory.h',
404 'base/socketpool.cc',
405 'base/socketpool.h',
406 'base/socketserver.h',
407 'base/socketstream.cc',
408 'base/socketstream.h',
409 'base/ssladapter.cc',
410 'base/ssladapter.h',
411 'base/sslconfig.h',
412 'base/sslfingerprint.h',
413 'base/sslidentity.cc',
414 'base/sslidentity.h',
415 'base/sslroots.h',
416 'base/sslsocketfactory.cc',
417 'base/sslsocketfactory.h',
418 'base/sslstreamadapter.cc',
419 'base/sslstreamadapter.h',
420 'base/sslstreamadapterhelper.cc',
421 'base/sslstreamadapterhelper.h',
422 'base/stream.cc',
423 'base/stream.h',
424 'base/stringdigest.h',
425 'base/stringencode.cc',
426 'base/stringencode.h',
427 'base/stringutils.cc',
428 'base/stringutils.h',
429 'base/systeminfo.cc',
430 'base/systeminfo.h',
431 'base/task.cc',
432 'base/task.h',
433 'base/taskparent.cc',
434 'base/taskparent.h',
435 'base/taskrunner.cc',
436 'base/taskrunner.h',
437 'base/testclient.cc',
438 'base/testclient.h',
439 'base/thread.cc',
440 'base/thread.h',
441 'base/timeutils.cc',
442 'base/timeutils.h',
443 'base/timing.cc',
444 'base/timing.h',
445 'base/transformadapter.cc',
446 'base/transformadapter.h',
447 'base/urlencode.cc',
448 'base/urlencode.h',
449 'base/versionparsing.cc',
450 'base/versionparsing.h',
451 'base/virtualsocketserver.cc',
452 'base/virtualsocketserver.h',
453 'base/window.h',
454 'base/windowpicker.h',
455 'base/windowpickerfactory.h',
456 'base/worker.cc',
457 'base/worker.h',
458 'xmllite/qname.cc',
459 'xmllite/qname.h',
460 'xmllite/xmlbuilder.cc',
461 'xmllite/xmlbuilder.h',
462 'xmllite/xmlconstants.cc',
463 'xmllite/xmlconstants.h',
464 'xmllite/xmlelement.cc',
465 'xmllite/xmlelement.h',
466 'xmllite/xmlnsstack.cc',
467 'xmllite/xmlnsstack.h',
468 'xmllite/xmlparser.cc',
469 'xmllite/xmlparser.h',
470 'xmllite/xmlprinter.cc',
471 'xmllite/xmlprinter.h',
472 'xmpp/asyncsocket.h',
473 'xmpp/chatroommodule.h',
474 'xmpp/chatroommoduleimpl.cc',
475 'xmpp/constants.cc',
476 'xmpp/constants.h',
477 'xmpp/discoitemsquerytask.cc',
478 'xmpp/discoitemsquerytask.h',
479 'xmpp/hangoutpubsubclient.cc',
480 'xmpp/hangoutpubsubclient.h',
481 'xmpp/iqtask.cc',
482 'xmpp/iqtask.h',
483 'xmpp/jid.cc',
484 'xmpp/jid.h',
485 'xmpp/module.h',
486 'xmpp/moduleimpl.cc',
487 'xmpp/moduleimpl.h',
488 'xmpp/mucroomconfigtask.cc',
489 'xmpp/mucroomconfigtask.h',
490 'xmpp/mucroomdiscoverytask.cc',
491 'xmpp/mucroomdiscoverytask.h',
492 'xmpp/mucroomlookuptask.cc',
493 'xmpp/mucroomlookuptask.h',
494 'xmpp/mucroomuniquehangoutidtask.cc',
495 'xmpp/mucroomuniquehangoutidtask.h',
496 'xmpp/pingtask.cc',
497 'xmpp/pingtask.h',
498 'xmpp/plainsaslhandler.h',
499 'xmpp/presenceouttask.cc',
500 'xmpp/presenceouttask.h',
501 'xmpp/presencereceivetask.cc',
502 'xmpp/presencereceivetask.h',
503 'xmpp/presencestatus.cc',
504 'xmpp/presencestatus.h',
505 'xmpp/prexmppauth.h',
506 'xmpp/pubsub_task.cc',
507 'xmpp/pubsub_task.h',
508 'xmpp/pubsubclient.cc',
509 'xmpp/pubsubclient.h',
510 'xmpp/pubsubtasks.cc',
511 'xmpp/pubsubtasks.h',
512 'xmpp/receivetask.cc',
513 'xmpp/receivetask.h',
514 'xmpp/rostermodule.h',
515 'xmpp/rostermoduleimpl.cc',
516 'xmpp/rostermoduleimpl.h',
517 'xmpp/saslcookiemechanism.h',
518 'xmpp/saslhandler.h',
519 'xmpp/saslmechanism.cc',
520 'xmpp/saslmechanism.h',
521 'xmpp/saslplainmechanism.h',
522 'xmpp/xmppauth.cc',
523 'xmpp/xmppauth.h',
524 'xmpp/xmppclient.cc',
525 'xmpp/xmppclient.h',
526 'xmpp/xmppclientsettings.h',
527 'xmpp/xmppengine.h',
528 'xmpp/xmppengineimpl.cc',
529 'xmpp/xmppengineimpl.h',
530 'xmpp/xmppengineimpl_iq.cc',
531 'xmpp/xmpplogintask.cc',
532 'xmpp/xmpplogintask.h',
533 'xmpp/xmpppump.cc',
534 'xmpp/xmpppump.h',
535 'xmpp/xmppsocket.cc',
536 'xmpp/xmppsocket.h',
537 'xmpp/xmppstanzaparser.cc',
538 'xmpp/xmppstanzaparser.h',
539 'xmpp/xmpptask.cc',
540 'xmpp/xmpptask.h',
541 'xmpp/xmppthread.cc',
542 'xmpp/xmppthread.h',
543 ],
544 'conditions': [
545 ['OS=="mac" or OS=="ios" or OS=="win"', {
546 'dependencies': [
547 # The chromium copy of nss should NOT be used on platforms that
548 # have NSS as system libraries, such as linux.
549 '<(DEPTH)/third_party/nss/nss.gyp:nss',
550 ],
551 }],
552 ['OS=="android"', {
553 'sources': [
554 'base/ifaddrs-android.cc',
555 ],
556 'link_settings': {
557 'libraries': [
558 '-llog',
559 '-lGLESv2',
560 ],
561 },
562 }],
563 ['OS=="linux" or OS=="android"', {
564 'sources': [
565 'base/linux.cc',
566 'base/linux.h',
567 ],
568 }],
569 ['OS=="linux"', {
570 'sources': [
571 'base/dbus.cc',
572 'base/dbus.h',
573 'base/libdbusglibsymboltable.cc',
574 'base/libdbusglibsymboltable.h',
575 'base/linuxfdwalk.c',
576 'base/linuxwindowpicker.cc',
577 'base/linuxwindowpicker.h',
578 ],
579 'link_settings': {
580 'libraries': [
581 '-lcrypto',
582 '-ldl',
583 '-lrt',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000584 '-lXext',
585 '-lX11',
586 '-lXcomposite',
587 '-lXrender',
588 '<!@(<(pkg-config) --libs-only-l nss | sed -e "s/-lssl3//")',
589 ],
590 },
591 'cflags': [
592 '<!@(<(pkg-config) --cflags nss)',
593 ],
594 'ldflags': [
595 '<!@(<(pkg-config) --libs-only-L --libs-only-other nss)',
596 ],
597 }],
598 ['OS=="mac"', {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000599 'sources': [
henrike@webrtc.org723d6832013-07-12 16:04:50 +0000600 'base/macasyncsocket.cc',
601 'base/macasyncsocket.h',
602 'base/maccocoasocketserver.h',
603 'base/maccocoasocketserver.mm',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000604 'base/macconversion.cc',
605 'base/macconversion.h',
henrike@webrtc.org723d6832013-07-12 16:04:50 +0000606 'base/macsocketserver.cc',
607 'base/macsocketserver.h',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000608 'base/macutils.cc',
609 'base/macutils.h',
610 'base/macwindowpicker.cc',
611 'base/macwindowpicker.h',
612 'base/scoped_autorelease_pool.mm',
613 ],
614 'link_settings': {
615 'libraries': [
fischman@webrtc.orge3de6b12013-08-26 19:31:21 +0000616 '$(SDKROOT)/usr/lib/libcrypto.dylib',
617 '$(SDKROOT)/usr/lib/libssl.dylib',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000618 ],
fischman@webrtc.orge3de6b12013-08-26 19:31:21 +0000619 },
620 'all_dependent_settings': {
621 'link_settings': {
622 'xcode_settings': {
623 'OTHER_LDFLAGS': [
624 '-framework Cocoa',
625 '-framework Foundation',
626 '-framework IOKit',
627 '-framework Security',
628 '-framework SystemConfiguration',
629 ],
630 },
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000631 },
632 },
fischman@webrtc.orge3de6b12013-08-26 19:31:21 +0000633 'conditions': [
634 ['target_arch=="ia32"', {
635 'all_dependent_settings': {
636 'link_settings': {
637 'xcode_settings': {
638 'OTHER_LDFLAGS': [
639 '-framework Carbon',
640 ],
641 },
642 },
643 },
644 }],
645 ],
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000646 }],
647 ['OS=="ios"', {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000648 'sources': [
649 'base/scoped_autorelease_pool.mm',
650 ],
fischman@webrtc.org1bc19542013-08-01 18:29:45 +0000651 'dependencies': [
652 '../net/third_party/nss/ssl.gyp:libssl',
653 ],
fischman@webrtc.orge3de6b12013-08-26 19:31:21 +0000654 'all_dependent_settings': {
655 'xcode_settings': {
656 'OTHER_LDFLAGS': [
657 '-framework Foundation',
658 '-framework IOKit',
659 '-framework Security',
660 '-framework SystemConfiguration',
661 '-framework UIKit',
662 ],
663 },
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000664 },
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000665 }],
666 ['OS=="win"', {
667 'sources': [
668 'base/diskcache_win32.cc',
669 'base/diskcache_win32.h',
670 'base/schanneladapter.cc',
671 'base/schanneladapter.h',
672 'base/win32.cc',
673 'base/win32.h',
674 'base/win32filesystem.cc',
675 'base/win32filesystem.h',
676 'base/win32regkey.cc',
677 'base/win32regkey.h',
678 'base/win32securityerrors.cc',
679 'base/win32socketinit.cc',
680 'base/win32socketinit.h',
681 'base/win32socketserver.cc',
682 'base/win32socketserver.h',
683 'base/win32window.cc',
684 'base/win32window.h',
685 'base/win32windowpicker.cc',
686 'base/win32windowpicker.h',
687 'base/winfirewall.cc',
688 'base/winfirewall.h',
689 'base/winping.cc',
690 'base/winping.h',
691 ],
henrike@webrtc.org28654cb2013-07-22 21:07:49 +0000692 'link_settings': {
693 'libraries': [
694 '-lcrypt32.lib',
695 '-liphlpapi.lib',
696 '-lsecur32.lib',
697 ],
698 },
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000699 # Suppress warnings about WIN32_LEAN_AND_MEAN.
700 'msvs_disabled_warnings': [4005],
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000701 }],
702 ['os_posix==1', {
703 'sources': [
704 'base/latebindingsymboltable.cc',
705 'base/latebindingsymboltable.h',
706 'base/posix.cc',
707 'base/posix.h',
708 'base/unixfilesystem.cc',
709 'base/unixfilesystem.h',
710 ],
711 'conditions': [
712 ['OS=="linux" or OS=="android"', {
713 'dependencies': [
714 '<(DEPTH)/third_party/openssl/openssl.gyp:openssl',
715 ],
716 }],
717 ['OS!="ios"', {
718 'sources': [
719 'base/openssladapter.cc',
720 'base/openssladapter.h',
721 'base/openssldigest.cc',
722 'base/openssldigest.h',
723 'base/opensslidentity.cc',
724 'base/opensslidentity.h',
725 'base/opensslstreamadapter.cc',
726 'base/opensslstreamadapter.h',
727 ],
728 }],
729 ],
730 }],
731 ], # conditions
732 }, # target libjingle
733 {
734 'target_name': 'libjingle_sound',
735 'type': 'static_library',
736 'dependencies': [
737 'libjingle',
738 ],
739 'sources': [
740 'sound/automaticallychosensoundsystem.h',
741 'sound/nullsoundsystem.cc',
742 'sound/nullsoundsystem.h',
743 'sound/nullsoundsystemfactory.cc',
744 'sound/nullsoundsystemfactory.h',
745 'sound/platformsoundsystem.cc',
746 'sound/platformsoundsystem.h',
747 'sound/platformsoundsystemfactory.cc',
748 'sound/platformsoundsystemfactory.h',
749 'sound/sounddevicelocator.h',
750 'sound/soundinputstreaminterface.h',
751 'sound/soundoutputstreaminterface.h',
752 'sound/soundsystemfactory.h',
753 'sound/soundsysteminterface.cc',
754 'sound/soundsysteminterface.h',
755 'sound/soundsystemproxy.cc',
756 'sound/soundsystemproxy.h',
757 ],
758 'conditions': [
759 ['OS=="linux"', {
760 'sources': [
761 'sound/alsasoundsystem.cc',
762 'sound/alsasoundsystem.h',
763 'sound/alsasymboltable.cc',
764 'sound/alsasymboltable.h',
765 'sound/linuxsoundsystem.cc',
766 'sound/linuxsoundsystem.h',
767 'sound/pulseaudiosoundsystem.cc',
768 'sound/pulseaudiosoundsystem.h',
769 'sound/pulseaudiosymboltable.cc',
770 'sound/pulseaudiosymboltable.h',
771 ],
772 }],
773 ],
774 }, # target libjingle_sound
775 {
776 'target_name': 'libjingle_media',
777 'type': 'static_library',
778 'dependencies': [
779 '<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv',
henrike@webrtc.org9de257d2013-07-17 14:42:53 +0000780 '<(webrtc_root)/modules/modules.gyp:video_capture_module',
781 '<(webrtc_root)/modules/modules.gyp:video_render_module',
782 '<(webrtc_root)/video_engine/video_engine.gyp:video_engine_core',
783 '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine',
784 '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000785 'libjingle',
786 'libjingle_sound',
787 ],
788 'direct_dependent_settings': {
789 'include_dirs': [
790 '<(DEPTH)/third_party/libyuv/include',
791 ],
792 },
793 'sources': [
794 'media/base/audioframe.h',
795 'media/base/audiorenderer.h',
796 'media/base/capturemanager.cc',
797 'media/base/capturemanager.h',
798 'media/base/capturerenderadapter.cc',
799 'media/base/capturerenderadapter.h',
800 'media/base/codec.cc',
801 'media/base/codec.h',
802 'media/base/constants.cc',
803 'media/base/constants.h',
804 'media/base/cpuid.cc',
805 'media/base/cpuid.h',
806 'media/base/cryptoparams.h',
807 'media/base/filemediaengine.cc',
808 'media/base/filemediaengine.h',
809 'media/base/hybriddataengine.h',
810 'media/base/hybridvideoengine.cc',
811 'media/base/hybridvideoengine.h',
812 'media/base/mediachannel.h',
813 'media/base/mediacommon.h',
814 'media/base/mediaengine.cc',
815 'media/base/mediaengine.h',
816 'media/base/mutedvideocapturer.cc',
817 'media/base/mutedvideocapturer.h',
818 'media/base/rtpdataengine.cc',
819 'media/base/rtpdataengine.h',
820 'media/base/rtpdump.cc',
821 'media/base/rtpdump.h',
822 'media/base/rtputils.cc',
823 'media/base/rtputils.h',
824 'media/base/screencastid.h',
825 'media/base/streamparams.cc',
826 'media/base/streamparams.h',
827 'media/base/videoadapter.cc',
828 'media/base/videoadapter.h',
829 'media/base/videocapturer.cc',
830 'media/base/videocapturer.h',
831 'media/base/videocommon.cc',
832 'media/base/videocommon.h',
833 'media/base/videoframe.cc',
834 'media/base/videoframe.h',
835 'media/base/videoprocessor.h',
836 'media/base/videorenderer.h',
837 'media/base/voiceprocessor.h',
838 'media/devices/deviceinfo.h',
839 'media/devices/devicemanager.cc',
840 'media/devices/devicemanager.h',
841 'media/devices/dummydevicemanager.h',
842 'media/devices/filevideocapturer.cc',
843 'media/devices/filevideocapturer.h',
844 'media/devices/videorendererfactory.h',
845 'media/other/linphonemediaengine.h',
846 # TODO(ronghuawu): Enable when SCTP is ready.
847 # 'media/sctp/sctpdataengine.cc',
848 # 'media/sctp/sctpdataengine.h',
849 'media/webrtc/webrtccommon.h',
850 'media/webrtc/webrtcexport.h',
851 'media/webrtc/webrtcmediaengine.h',
852 'media/webrtc/webrtcpassthroughrender.cc',
853 'media/webrtc/webrtcpassthroughrender.h',
wu@webrtc.org9dba5252013-08-05 20:36:57 +0000854 'media/webrtc/webrtctexturevideoframe.cc',
855 'media/webrtc/webrtctexturevideoframe.h',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000856 'media/webrtc/webrtcvideocapturer.cc',
857 'media/webrtc/webrtcvideocapturer.h',
858 'media/webrtc/webrtcvideodecoderfactory.h',
859 'media/webrtc/webrtcvideoencoderfactory.h',
860 'media/webrtc/webrtcvideoengine.cc',
861 'media/webrtc/webrtcvideoengine.h',
862 'media/webrtc/webrtcvideoframe.cc',
863 'media/webrtc/webrtcvideoframe.h',
864 'media/webrtc/webrtcvie.h',
865 'media/webrtc/webrtcvoe.h',
866 'media/webrtc/webrtcvoiceengine.cc',
867 'media/webrtc/webrtcvoiceengine.h',
868 ],
869 'conditions': [
870 ['OS=="linux"', {
871 'sources': [
872 'media/devices/gtkvideorenderer.cc',
873 'media/devices/gtkvideorenderer.h',
874 'media/devices/libudevsymboltable.cc',
875 'media/devices/libudevsymboltable.h',
876 'media/devices/linuxdeviceinfo.cc',
877 'media/devices/linuxdevicemanager.cc',
878 'media/devices/linuxdevicemanager.h',
879 'media/devices/v4llookup.cc',
880 'media/devices/v4llookup.h',
881 ],
882 'include_dirs': [
883 'third_party/libudev'
884 ],
885 'cflags': [
886 '<!@(pkg-config --cflags gobject-2.0 gthread-2.0 gtk+-2.0)',
887 ],
888 'libraries': [
889 '-lrt',
890 '-lXext',
891 '-lX11',
892 ],
893 }],
894 ['OS=="win"', {
895 'sources': [
896 'media/devices/gdivideorenderer.cc',
897 'media/devices/gdivideorenderer.h',
898 'media/devices/win32deviceinfo.cc',
899 'media/devices/win32devicemanager.cc',
900 'media/devices/win32devicemanager.h',
901 ],
902 'msvs_settings': {
903 'VCLibrarianTool': {
904 'AdditionalDependencies': [
905 'd3d9.lib',
906 'gdi32.lib',
907 'strmiids.lib',
908 'winmm.lib',
909 ],
910 },
911 },
912 }],
913 ['OS=="mac"', {
914 'sources': [
915 'media/devices/macdeviceinfo.cc',
916 'media/devices/macdevicemanager.cc',
917 'media/devices/macdevicemanager.h',
918 'media/devices/macdevicemanagermm.mm',
919 ],
920 'conditions': [
fischman@webrtc.orge3de6b12013-08-26 19:31:21 +0000921 ['target_arch=="ia32"', {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000922 'sources': [
923 'media/devices/carbonvideorenderer.cc',
924 'media/devices/carbonvideorenderer.h',
925 ],
fischman@webrtc.orge3de6b12013-08-26 19:31:21 +0000926 'link_settings': {
927 'xcode_settings': {
928 'OTHER_LDFLAGS': [
929 '-framework Carbon',
930 ],
931 },
932 },
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000933 }],
934 ],
935 'xcode_settings': {
936 'WARNING_CFLAGS': [
937 # TODO(ronghuawu): Update macdevicemanager.cc to stop using
938 # deprecated functions and remove this flag.
939 '-Wno-deprecated-declarations',
940 ],
941 },
942 'link_settings': {
943 'xcode_settings': {
944 'OTHER_LDFLAGS': [
945 '-framework Cocoa',
946 '-framework CoreAudio',
947 '-framework CoreVideo',
948 '-framework OpenGL',
949 '-framework QTKit',
950 ],
951 },
952 },
953 }],
954 ['OS=="ios"', {
955 'sources': [
956 'media/devices/iosdeviceinfo.cc',
957 'media/devices/mobiledevicemanager.cc',
958 ],
959 'include_dirs': [
960 # TODO(sjlee) Remove when vp8 is building for iOS. vp8 pulls in
961 # libjpeg which pulls in libyuv which currently disabled.
962 '../third_party/libyuv/include',
963 ],
964 }],
965 ['OS=="android"', {
966 'sources': [
967 'media/devices/mobiledevicemanager.cc',
968 ],
969 }],
970 ],
971 }, # target libjingle_media
972 {
973 'target_name': 'libjingle_p2p',
974 'type': 'static_library',
975 'dependencies': [
976 '<(DEPTH)/third_party/libsrtp/libsrtp.gyp:libsrtp',
977 'libjingle',
978 'libjingle_media',
979 ],
980 'include_dirs': [
henrike@webrtc.org723d6832013-07-12 16:04:50 +0000981 '<(DEPTH)/testing/gtest/include',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000982 ],
983 'direct_dependent_settings': {
984 'include_dirs': [
henrike@webrtc.org723d6832013-07-12 16:04:50 +0000985 '<(DEPTH)/testing/gtest/include',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000986 ],
987 },
988 'defines': [
989 # TODO(ronghuawu): enable SCTP when it's ready.
990 # 'HAVE_SCTP',
991 ],
992 'sources': [
993 'p2p/base/asyncstuntcpsocket.cc',
994 'p2p/base/asyncstuntcpsocket.h',
995 'p2p/base/basicpacketsocketfactory.cc',
996 'p2p/base/basicpacketsocketfactory.h',
997 'p2p/base/candidate.h',
998 'p2p/base/common.h',
999 'p2p/base/constants.cc',
1000 'p2p/base/constants.h',
1001 'p2p/base/dtlstransportchannel.cc',
1002 'p2p/base/dtlstransportchannel.h',
1003 'p2p/base/p2ptransport.cc',
1004 'p2p/base/p2ptransport.h',
1005 'p2p/base/p2ptransportchannel.cc',
1006 'p2p/base/p2ptransportchannel.h',
1007 'p2p/base/packetsocketfactory.h',
1008 'p2p/base/parsing.cc',
1009 'p2p/base/parsing.h',
1010 'p2p/base/port.cc',
1011 'p2p/base/port.h',
1012 'p2p/base/portallocator.cc',
1013 'p2p/base/portallocator.h',
1014 'p2p/base/portallocatorsessionproxy.cc',
1015 'p2p/base/portallocatorsessionproxy.h',
1016 'p2p/base/portinterface.h',
1017 'p2p/base/portproxy.cc',
1018 'p2p/base/portproxy.h',
1019 'p2p/base/pseudotcp.cc',
1020 'p2p/base/pseudotcp.h',
1021 'p2p/base/rawtransport.cc',
1022 'p2p/base/rawtransport.h',
1023 'p2p/base/rawtransportchannel.cc',
1024 'p2p/base/rawtransportchannel.h',
1025 'p2p/base/relayport.cc',
1026 'p2p/base/relayport.h',
1027 'p2p/base/relayserver.cc',
1028 'p2p/base/relayserver.h',
1029 'p2p/base/session.cc',
1030 'p2p/base/session.h',
1031 'p2p/base/sessionclient.h',
1032 'p2p/base/sessiondescription.cc',
1033 'p2p/base/sessiondescription.h',
1034 'p2p/base/sessionid.h',
1035 'p2p/base/sessionmanager.cc',
1036 'p2p/base/sessionmanager.h',
1037 'p2p/base/sessionmessages.cc',
1038 'p2p/base/sessionmessages.h',
1039 'p2p/base/stun.cc',
1040 'p2p/base/stun.h',
1041 'p2p/base/stunport.cc',
1042 'p2p/base/stunport.h',
1043 'p2p/base/stunrequest.cc',
1044 'p2p/base/stunrequest.h',
1045 'p2p/base/stunserver.cc',
1046 'p2p/base/stunserver.h',
1047 'p2p/base/tcpport.cc',
1048 'p2p/base/tcpport.h',
1049 'p2p/base/transport.cc',
1050 'p2p/base/transport.h',
1051 'p2p/base/transportchannel.cc',
1052 'p2p/base/transportchannel.h',
1053 'p2p/base/transportchannelimpl.h',
1054 'p2p/base/transportchannelproxy.cc',
1055 'p2p/base/transportchannelproxy.h',
sergeyu@chromium.org492e3152013-08-24 00:06:43 +00001056 'p2p/base/transportdescription.cc',
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001057 'p2p/base/transportdescription.h',
1058 'p2p/base/transportdescriptionfactory.cc',
1059 'p2p/base/transportdescriptionfactory.h',
1060 'p2p/base/transportinfo.h',
1061 'p2p/base/turnport.cc',
1062 'p2p/base/turnport.h',
1063 'p2p/base/turnserver.cc',
1064 'p2p/base/turnserver.h',
1065 'p2p/base/udpport.h',
1066 'p2p/client/autoportallocator.h',
1067 'p2p/client/basicportallocator.cc',
1068 'p2p/client/basicportallocator.h',
1069 'p2p/client/connectivitychecker.cc',
1070 'p2p/client/connectivitychecker.h',
1071 'p2p/client/httpportallocator.cc',
1072 'p2p/client/httpportallocator.h',
1073 'p2p/client/sessionmanagertask.h',
1074 'p2p/client/sessionsendtask.h',
1075 'p2p/client/socketmonitor.cc',
1076 'p2p/client/socketmonitor.h',
1077 'session/tunnel/pseudotcpchannel.cc',
1078 'session/tunnel/pseudotcpchannel.h',
1079 'session/tunnel/tunnelsessionclient.cc',
1080 'session/tunnel/tunnelsessionclient.h',
1081 'session/tunnel/securetunnelsessionclient.cc',
1082 'session/tunnel/securetunnelsessionclient.h',
1083 'session/media/audiomonitor.cc',
1084 'session/media/audiomonitor.h',
1085 'session/media/call.cc',
1086 'session/media/call.h',
1087 'session/media/channel.cc',
1088 'session/media/channel.h',
1089 'session/media/channelmanager.cc',
1090 'session/media/channelmanager.h',
1091 'session/media/currentspeakermonitor.cc',
1092 'session/media/currentspeakermonitor.h',
1093 'session/media/mediamessages.cc',
1094 'session/media/mediamessages.h',
1095 'session/media/mediamonitor.cc',
1096 'session/media/mediamonitor.h',
1097 'session/media/mediarecorder.cc',
1098 'session/media/mediarecorder.h',
1099 'session/media/mediasession.cc',
1100 'session/media/mediasession.h',
1101 'session/media/mediasessionclient.cc',
1102 'session/media/mediasessionclient.h',
1103 'session/media/mediasink.h',
1104 'session/media/rtcpmuxfilter.cc',
1105 'session/media/rtcpmuxfilter.h',
1106 'session/media/soundclip.cc',
1107 'session/media/soundclip.h',
1108 'session/media/srtpfilter.cc',
1109 'session/media/srtpfilter.h',
1110 'session/media/ssrcmuxfilter.cc',
1111 'session/media/ssrcmuxfilter.h',
1112 'session/media/typingmonitor.cc',
1113 'session/media/typingmonitor.h',
1114 'session/media/voicechannel.h',
1115 ],
1116 }, # target libjingle_p2p
1117 {
1118 'target_name': 'libjingle_peerconnection',
1119 'type': 'static_library',
1120 'dependencies': [
1121 'libjingle',
1122 'libjingle_media',
1123 'libjingle_p2p',
1124 ],
1125 'sources': [
1126 'app/webrtc/audiotrack.cc',
1127 'app/webrtc/audiotrack.h',
1128 'app/webrtc/audiotrackrenderer.cc',
1129 'app/webrtc/audiotrackrenderer.h',
1130 'app/webrtc/datachannel.cc',
1131 'app/webrtc/datachannel.h',
1132 'app/webrtc/datachannelinterface.h',
1133 'app/webrtc/dtmfsender.cc',
1134 'app/webrtc/dtmfsender.h',
1135 'app/webrtc/dtmfsenderinterface.h',
1136 'app/webrtc/fakeportallocatorfactory.h',
1137 'app/webrtc/jsep.h',
1138 'app/webrtc/jsepicecandidate.cc',
1139 'app/webrtc/jsepicecandidate.h',
1140 'app/webrtc/jsepsessiondescription.cc',
1141 'app/webrtc/jsepsessiondescription.h',
1142 'app/webrtc/localaudiosource.cc',
1143 'app/webrtc/localaudiosource.h',
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001144 'app/webrtc/mediaconstraintsinterface.cc',
1145 'app/webrtc/mediaconstraintsinterface.h',
1146 'app/webrtc/mediastream.cc',
1147 'app/webrtc/mediastream.h',
1148 'app/webrtc/mediastreamhandler.cc',
1149 'app/webrtc/mediastreamhandler.h',
1150 'app/webrtc/mediastreaminterface.h',
1151 'app/webrtc/mediastreamprovider.h',
1152 'app/webrtc/mediastreamproxy.h',
1153 'app/webrtc/mediastreamsignaling.cc',
1154 'app/webrtc/mediastreamsignaling.h',
1155 'app/webrtc/mediastreamtrack.h',
1156 'app/webrtc/mediastreamtrackproxy.h',
1157 'app/webrtc/notifier.h',
1158 'app/webrtc/peerconnection.cc',
1159 'app/webrtc/peerconnection.h',
1160 'app/webrtc/peerconnectionfactory.cc',
1161 'app/webrtc/peerconnectionfactory.h',
1162 'app/webrtc/peerconnectioninterface.h',
1163 'app/webrtc/peerconnectionproxy.h',
1164 'app/webrtc/portallocatorfactory.cc',
1165 'app/webrtc/portallocatorfactory.h',
1166 'app/webrtc/proxy.h',
wu@webrtc.org967bfff2013-09-19 05:49:50 +00001167 'app/webrtc/remotevideocapturer.cc',
1168 'app/webrtc/remotevideocapturer.h',
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001169 'app/webrtc/statscollector.cc',
1170 'app/webrtc/statscollector.h',
1171 'app/webrtc/statstypes.h',
1172 'app/webrtc/streamcollection.h',
wu@webrtc.org967bfff2013-09-19 05:49:50 +00001173 'app/webrtc/videosource.cc',
1174 'app/webrtc/videosource.h',
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001175 'app/webrtc/videosourceinterface.h',
1176 'app/webrtc/videosourceproxy.h',
1177 'app/webrtc/videotrack.cc',
1178 'app/webrtc/videotrack.h',
1179 'app/webrtc/videotrackrenderers.cc',
1180 'app/webrtc/videotrackrenderers.h',
1181 'app/webrtc/webrtcsdp.cc',
1182 'app/webrtc/webrtcsdp.h',
1183 'app/webrtc/webrtcsession.cc',
1184 'app/webrtc/webrtcsession.h',
wu@webrtc.org91053e72013-08-10 07:18:04 +00001185 'app/webrtc/webrtcsessiondescriptionfactory.cc',
1186 'app/webrtc/webrtcsessiondescriptionfactory.h',
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001187 ],
1188 }, # target libjingle_peerconnection
1189 ],
1190}