blob: 4cbeaa3c9878a6916a1626511a620ea22aaa9760 [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/VideoCaptureAndroid.java',
111 '<(webrtc_modules_dir)/video_capture/android/java/src/org/webrtc/videoengine/VideoCaptureDeviceInfoAndroid.java',
112 '<(webrtc_modules_dir)/video_render/android/java/src/org/webrtc/videoengine/ViEAndroidGLES20.java',
113 '<(webrtc_modules_dir)/video_render/android/java/src/org/webrtc/videoengine/ViERenderer.java',
114 '<(webrtc_modules_dir)/video_render/android/java/src/org/webrtc/videoengine/ViESurfaceRenderer.java',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000115 ],
116 },
117 'action_name': 'create_jar',
118 'inputs': [
119 'build/build_jar.sh',
120 '<@(java_files)',
121 ],
122 'outputs': [
123 '<(PRODUCT_DIR)/libjingle_peerconnection.jar',
124 ],
125 'conditions': [
126 ['OS=="android"', {
127 'variables': {
128 'java_files': ['<@(peerconnection_java_files)', '<@(android_java_files)'],
129 'build_classpath': '<(java_src_dir):<(DEPTH)/third_party/android_tools/sdk/platforms/android-<(android_sdk_version)/android.jar',
130 },
131 }, {
132 'variables': {
133 'java_files': ['<@(peerconnection_java_files)'],
134 'build_classpath': '<(java_src_dir)',
135 },
136 }],
137 ],
138 'action': [
139 'build/build_jar.sh', '<(java_home)', '<@(_outputs)',
140 '<(INTERMEDIATE_DIR)',
141 '<(build_classpath)',
142 '<@(java_files)'
143 ],
144 },
145 ],
146 'dependencies': [
147 'libjingle_peerconnection_so',
148 ],
149 },
150 ],
151 }],
fischman@webrtc.orge3de6b12013-08-26 19:31:21 +0000152 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000153 'targets': [
154 {
155 'target_name': 'libjingle_peerconnection_objc',
156 'type': 'static_library',
157 'dependencies': [
158 'libjingle_peerconnection',
159 ],
160 'sources': [
161 'app/webrtc/objc/RTCAudioTrack+Internal.h',
162 'app/webrtc/objc/RTCAudioTrack.mm',
163 'app/webrtc/objc/RTCEnumConverter.h',
164 'app/webrtc/objc/RTCEnumConverter.mm',
165 'app/webrtc/objc/RTCI420Frame.mm',
fischman@webrtc.org1bc19542013-08-01 18:29:45 +0000166 'app/webrtc/objc/RTCICECandidate+Internal.h',
167 'app/webrtc/objc/RTCICECandidate.mm',
168 'app/webrtc/objc/RTCICEServer+Internal.h',
169 'app/webrtc/objc/RTCICEServer.mm',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000170 'app/webrtc/objc/RTCMediaConstraints+Internal.h',
171 'app/webrtc/objc/RTCMediaConstraints.mm',
172 'app/webrtc/objc/RTCMediaConstraintsNative.cc',
173 'app/webrtc/objc/RTCMediaConstraintsNative.h',
174 'app/webrtc/objc/RTCMediaSource+Internal.h',
175 'app/webrtc/objc/RTCMediaSource.mm',
176 'app/webrtc/objc/RTCMediaStream+Internal.h',
177 'app/webrtc/objc/RTCMediaStream.mm',
178 'app/webrtc/objc/RTCMediaStreamTrack+Internal.h',
179 'app/webrtc/objc/RTCMediaStreamTrack.mm',
180 'app/webrtc/objc/RTCPair.m',
181 'app/webrtc/objc/RTCPeerConnection+Internal.h',
182 'app/webrtc/objc/RTCPeerConnection.mm',
183 'app/webrtc/objc/RTCPeerConnectionFactory.mm',
184 'app/webrtc/objc/RTCPeerConnectionObserver.h',
185 'app/webrtc/objc/RTCPeerConnectionObserver.mm',
186 'app/webrtc/objc/RTCSessionDescription+Internal.h',
187 'app/webrtc/objc/RTCSessionDescription.mm',
188 'app/webrtc/objc/RTCVideoCapturer+Internal.h',
189 'app/webrtc/objc/RTCVideoCapturer.mm',
190 'app/webrtc/objc/RTCVideoRenderer+Internal.h',
191 'app/webrtc/objc/RTCVideoRenderer.mm',
192 'app/webrtc/objc/RTCVideoSource+Internal.h',
193 'app/webrtc/objc/RTCVideoSource.mm',
194 'app/webrtc/objc/RTCVideoTrack+Internal.h',
195 'app/webrtc/objc/RTCVideoTrack.mm',
196 'app/webrtc/objc/public/RTCAudioSource.h',
197 'app/webrtc/objc/public/RTCAudioTrack.h',
198 'app/webrtc/objc/public/RTCI420Frame.h',
fischman@webrtc.org1bc19542013-08-01 18:29:45 +0000199 'app/webrtc/objc/public/RTCICECandidate.h',
200 'app/webrtc/objc/public/RTCICEServer.h',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000201 'app/webrtc/objc/public/RTCMediaConstraints.h',
202 'app/webrtc/objc/public/RTCMediaSource.h',
203 'app/webrtc/objc/public/RTCMediaStream.h',
204 'app/webrtc/objc/public/RTCMediaStreamTrack.h',
205 'app/webrtc/objc/public/RTCPair.h',
206 'app/webrtc/objc/public/RTCPeerConnection.h',
207 'app/webrtc/objc/public/RTCPeerConnectionDelegate.h',
208 'app/webrtc/objc/public/RTCPeerConnectionFactory.h',
209 'app/webrtc/objc/public/RTCSessionDescription.h',
210 'app/webrtc/objc/public/RTCSessionDescriptonDelegate.h',
211 'app/webrtc/objc/public/RTCTypes.h',
212 'app/webrtc/objc/public/RTCVideoCapturer.h',
213 'app/webrtc/objc/public/RTCVideoRenderer.h',
214 'app/webrtc/objc/public/RTCVideoRendererDelegate.h',
215 'app/webrtc/objc/public/RTCVideoSource.h',
216 'app/webrtc/objc/public/RTCVideoTrack.h',
217 ],
fischman@webrtc.org1bc19542013-08-01 18:29:45 +0000218 'direct_dependent_settings': {
219 'include_dirs': [
220 '<(DEPTH)/talk/app/webrtc/objc/public',
221 ],
222 },
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000223 'include_dirs': [
224 '<(DEPTH)/talk/app/webrtc',
225 '<(DEPTH)/talk/app/webrtc/objc',
226 '<(DEPTH)/talk/app/webrtc/objc/public',
227 ],
228 'link_settings': {
229 'libraries': [
230 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
fischman@webrtc.org76fe9302013-09-19 21:11:08 +0000231 '-lstdc++',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000232 ],
233 },
234 'xcode_settings': {
235 'CLANG_ENABLE_OBJC_ARC': 'YES',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000236 },
fischman@webrtc.orge3de6b12013-08-26 19:31:21 +0000237 }, # target libjingle_peerconnection_objc
238 ],
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000239 }],
240 ],
241
242 'targets': [
243 {
244 'target_name': 'libjingle',
245 'type': 'static_library',
246 'dependencies': [
247 '<(DEPTH)/third_party/expat/expat.gyp:expat',
248 '<(DEPTH)/third_party/jsoncpp/jsoncpp.gyp:jsoncpp',
249 ],
250 'export_dependent_settings': [
251 '<(DEPTH)/third_party/expat/expat.gyp:expat',
252 '<(DEPTH)/third_party/jsoncpp/jsoncpp.gyp:jsoncpp',
253 ],
254 'sources': [
255 'base/asyncfile.cc',
256 'base/asyncfile.h',
257 'base/asynchttprequest.cc',
258 'base/asynchttprequest.h',
259 'base/asyncpacketsocket.h',
sergeyu@chromium.orga23f0ca2013-11-13 22:48:52 +0000260 'base/asyncresolverinterface.h',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000261 'base/asyncsocket.cc',
262 'base/asyncsocket.h',
263 'base/asynctcpsocket.cc',
264 'base/asynctcpsocket.h',
265 'base/asyncudpsocket.cc',
266 'base/asyncudpsocket.h',
267 'base/atomicops.h',
268 'base/autodetectproxy.cc',
269 'base/autodetectproxy.h',
270 'base/bandwidthsmoother.cc',
271 'base/bandwidthsmoother.h',
272 'base/base64.cc',
273 'base/base64.h',
274 'base/basicdefs.h',
275 'base/basictypes.h',
276 'base/bind.h',
277 'base/buffer.h',
278 'base/bytebuffer.cc',
279 'base/bytebuffer.h',
280 'base/byteorder.h',
281 'base/checks.cc',
282 'base/checks.h',
283 'base/common.cc',
284 'base/common.h',
285 'base/constructormagic.h',
286 'base/cpumonitor.cc',
287 'base/cpumonitor.h',
288 'base/crc32.cc',
289 'base/crc32.h',
290 'base/criticalsection.h',
291 'base/cryptstring.h',
292 'base/diskcache.cc',
293 'base/diskcache.h',
294 'base/event.cc',
295 'base/event.h',
296 'base/filelock.cc',
297 'base/filelock.h',
298 'base/fileutils.cc',
299 'base/fileutils.h',
300 'base/fileutils_mock.h',
301 'base/firewallsocketserver.cc',
302 'base/firewallsocketserver.h',
303 'base/flags.cc',
304 'base/flags.h',
305 'base/gunit_prod.h',
306 'base/helpers.cc',
307 'base/helpers.h',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000308 'base/httpbase.cc',
309 'base/httpbase.h',
310 'base/httpclient.cc',
311 'base/httpclient.h',
312 'base/httpcommon-inl.h',
313 'base/httpcommon.cc',
314 'base/httpcommon.h',
315 'base/httprequest.cc',
316 'base/httprequest.h',
317 'base/httpserver.cc',
318 'base/httpserver.h',
319 'base/ifaddrs-android.cc',
320 'base/ifaddrs-android.h',
321 'base/ipaddress.cc',
322 'base/ipaddress.h',
323 'base/json.cc',
324 'base/json.h',
325 'base/linked_ptr.h',
326 'base/linuxfdwalk.h',
327 'base/logging.cc',
328 'base/logging.h',
329 'base/maccocoathreadhelper.h',
330 'base/maccocoathreadhelper.mm',
331 'base/mathutils.h',
332 'base/md5.cc',
333 'base/md5.h',
334 'base/md5digest.h',
335 'base/messagedigest.cc',
336 'base/messagedigest.h',
337 'base/messagehandler.cc',
338 'base/messagehandler.h',
339 'base/messagequeue.cc',
340 'base/messagequeue.h',
341 'base/multipart.cc',
342 'base/multipart.h',
343 'base/natserver.cc',
344 'base/natserver.h',
345 'base/natsocketfactory.cc',
346 'base/natsocketfactory.h',
347 'base/nattypes.cc',
348 'base/nattypes.h',
349 'base/nethelpers.cc',
350 'base/nethelpers.h',
351 'base/network.cc',
352 'base/network.h',
353 'base/nssidentity.cc',
354 'base/nssidentity.h',
355 'base/nssstreamadapter.cc',
356 'base/nssstreamadapter.h',
357 'base/nullsocketserver.h',
358 'base/optionsfile.cc',
359 'base/optionsfile.h',
360 'base/pathutils.cc',
361 'base/pathutils.h',
362 'base/physicalsocketserver.cc',
363 'base/physicalsocketserver.h',
364 'base/profiler.cc',
365 'base/profiler.h',
366 'base/proxydetect.cc',
367 'base/proxydetect.h',
368 'base/proxyinfo.cc',
369 'base/proxyinfo.h',
370 'base/proxyserver.cc',
371 'base/proxyserver.h',
372 'base/ratelimiter.cc',
373 'base/ratelimiter.h',
374 'base/ratetracker.cc',
375 'base/ratetracker.h',
376 'base/refcount.h',
377 'base/referencecountedsingletonfactory.h',
378 'base/rollingaccumulator.h',
379 'base/scoped_autorelease_pool.h',
380 'base/scoped_ptr.h',
381 'base/scoped_ref_ptr.h',
382 'base/sec_buffer.h',
383 'base/sha1.cc',
384 'base/sha1.h',
385 'base/sha1digest.h',
386 'base/sharedexclusivelock.cc',
387 'base/sharedexclusivelock.h',
388 'base/signalthread.cc',
389 'base/signalthread.h',
390 'base/sigslot.h',
391 'base/sigslotrepeater.h',
392 'base/socket.h',
393 'base/socketadapters.cc',
394 'base/socketadapters.h',
395 'base/socketaddress.cc',
396 'base/socketaddress.h',
397 'base/socketaddresspair.cc',
398 'base/socketaddresspair.h',
399 'base/socketfactory.h',
400 'base/socketpool.cc',
401 'base/socketpool.h',
402 'base/socketserver.h',
403 'base/socketstream.cc',
404 'base/socketstream.h',
405 'base/ssladapter.cc',
406 'base/ssladapter.h',
407 'base/sslconfig.h',
408 'base/sslfingerprint.h',
409 'base/sslidentity.cc',
410 'base/sslidentity.h',
411 'base/sslroots.h',
412 'base/sslsocketfactory.cc',
413 'base/sslsocketfactory.h',
414 'base/sslstreamadapter.cc',
415 'base/sslstreamadapter.h',
416 'base/sslstreamadapterhelper.cc',
417 'base/sslstreamadapterhelper.h',
418 'base/stream.cc',
419 'base/stream.h',
420 'base/stringdigest.h',
421 'base/stringencode.cc',
422 'base/stringencode.h',
423 'base/stringutils.cc',
424 'base/stringutils.h',
425 'base/systeminfo.cc',
426 'base/systeminfo.h',
427 'base/task.cc',
428 'base/task.h',
429 'base/taskparent.cc',
430 'base/taskparent.h',
431 'base/taskrunner.cc',
432 'base/taskrunner.h',
433 'base/testclient.cc',
434 'base/testclient.h',
435 'base/thread.cc',
436 'base/thread.h',
437 'base/timeutils.cc',
438 'base/timeutils.h',
439 'base/timing.cc',
440 'base/timing.h',
441 'base/transformadapter.cc',
442 'base/transformadapter.h',
443 'base/urlencode.cc',
444 'base/urlencode.h',
445 'base/versionparsing.cc',
446 'base/versionparsing.h',
447 'base/virtualsocketserver.cc',
448 'base/virtualsocketserver.h',
449 'base/window.h',
450 'base/windowpicker.h',
451 'base/windowpickerfactory.h',
452 'base/worker.cc',
453 'base/worker.h',
454 'xmllite/qname.cc',
455 'xmllite/qname.h',
456 'xmllite/xmlbuilder.cc',
457 'xmllite/xmlbuilder.h',
458 'xmllite/xmlconstants.cc',
459 'xmllite/xmlconstants.h',
460 'xmllite/xmlelement.cc',
461 'xmllite/xmlelement.h',
462 'xmllite/xmlnsstack.cc',
463 'xmllite/xmlnsstack.h',
464 'xmllite/xmlparser.cc',
465 'xmllite/xmlparser.h',
466 'xmllite/xmlprinter.cc',
467 'xmllite/xmlprinter.h',
468 'xmpp/asyncsocket.h',
469 'xmpp/chatroommodule.h',
470 'xmpp/chatroommoduleimpl.cc',
471 'xmpp/constants.cc',
472 'xmpp/constants.h',
473 'xmpp/discoitemsquerytask.cc',
474 'xmpp/discoitemsquerytask.h',
475 'xmpp/hangoutpubsubclient.cc',
476 'xmpp/hangoutpubsubclient.h',
477 'xmpp/iqtask.cc',
478 'xmpp/iqtask.h',
479 'xmpp/jid.cc',
480 'xmpp/jid.h',
481 'xmpp/module.h',
482 'xmpp/moduleimpl.cc',
483 'xmpp/moduleimpl.h',
484 'xmpp/mucroomconfigtask.cc',
485 'xmpp/mucroomconfigtask.h',
486 'xmpp/mucroomdiscoverytask.cc',
487 'xmpp/mucroomdiscoverytask.h',
488 'xmpp/mucroomlookuptask.cc',
489 'xmpp/mucroomlookuptask.h',
490 'xmpp/mucroomuniquehangoutidtask.cc',
491 'xmpp/mucroomuniquehangoutidtask.h',
492 'xmpp/pingtask.cc',
493 'xmpp/pingtask.h',
494 'xmpp/plainsaslhandler.h',
495 'xmpp/presenceouttask.cc',
496 'xmpp/presenceouttask.h',
497 'xmpp/presencereceivetask.cc',
498 'xmpp/presencereceivetask.h',
499 'xmpp/presencestatus.cc',
500 'xmpp/presencestatus.h',
501 'xmpp/prexmppauth.h',
502 'xmpp/pubsub_task.cc',
503 'xmpp/pubsub_task.h',
504 'xmpp/pubsubclient.cc',
505 'xmpp/pubsubclient.h',
506 'xmpp/pubsubtasks.cc',
507 'xmpp/pubsubtasks.h',
508 'xmpp/receivetask.cc',
509 'xmpp/receivetask.h',
510 'xmpp/rostermodule.h',
511 'xmpp/rostermoduleimpl.cc',
512 'xmpp/rostermoduleimpl.h',
513 'xmpp/saslcookiemechanism.h',
514 'xmpp/saslhandler.h',
515 'xmpp/saslmechanism.cc',
516 'xmpp/saslmechanism.h',
517 'xmpp/saslplainmechanism.h',
518 'xmpp/xmppauth.cc',
519 'xmpp/xmppauth.h',
520 'xmpp/xmppclient.cc',
521 'xmpp/xmppclient.h',
522 'xmpp/xmppclientsettings.h',
523 'xmpp/xmppengine.h',
524 'xmpp/xmppengineimpl.cc',
525 'xmpp/xmppengineimpl.h',
526 'xmpp/xmppengineimpl_iq.cc',
527 'xmpp/xmpplogintask.cc',
528 'xmpp/xmpplogintask.h',
529 'xmpp/xmpppump.cc',
530 'xmpp/xmpppump.h',
531 'xmpp/xmppsocket.cc',
532 'xmpp/xmppsocket.h',
533 'xmpp/xmppstanzaparser.cc',
534 'xmpp/xmppstanzaparser.h',
535 'xmpp/xmpptask.cc',
536 'xmpp/xmpptask.h',
537 'xmpp/xmppthread.cc',
538 'xmpp/xmppthread.h',
539 ],
540 'conditions': [
541 ['OS=="mac" or OS=="ios" or OS=="win"', {
542 'dependencies': [
543 # The chromium copy of nss should NOT be used on platforms that
544 # have NSS as system libraries, such as linux.
545 '<(DEPTH)/third_party/nss/nss.gyp:nss',
546 ],
547 }],
548 ['OS=="android"', {
549 'sources': [
550 'base/ifaddrs-android.cc',
551 ],
552 'link_settings': {
553 'libraries': [
554 '-llog',
555 '-lGLESv2',
556 ],
557 },
558 }],
559 ['OS=="linux" or OS=="android"', {
560 'sources': [
561 'base/linux.cc',
562 'base/linux.h',
563 ],
564 }],
565 ['OS=="linux"', {
566 'sources': [
567 'base/dbus.cc',
568 'base/dbus.h',
569 'base/libdbusglibsymboltable.cc',
570 'base/libdbusglibsymboltable.h',
571 'base/linuxfdwalk.c',
572 'base/linuxwindowpicker.cc',
573 'base/linuxwindowpicker.h',
574 ],
575 'link_settings': {
576 'libraries': [
577 '-lcrypto',
578 '-ldl',
579 '-lrt',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000580 '-lXext',
581 '-lX11',
582 '-lXcomposite',
583 '-lXrender',
584 '<!@(<(pkg-config) --libs-only-l nss | sed -e "s/-lssl3//")',
585 ],
586 },
587 'cflags': [
588 '<!@(<(pkg-config) --cflags nss)',
589 ],
590 'ldflags': [
591 '<!@(<(pkg-config) --libs-only-L --libs-only-other nss)',
592 ],
593 }],
594 ['OS=="mac"', {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000595 'sources': [
henrike@webrtc.org723d6832013-07-12 16:04:50 +0000596 'base/macasyncsocket.cc',
597 'base/macasyncsocket.h',
598 'base/maccocoasocketserver.h',
599 'base/maccocoasocketserver.mm',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000600 'base/macconversion.cc',
601 'base/macconversion.h',
henrike@webrtc.org723d6832013-07-12 16:04:50 +0000602 'base/macsocketserver.cc',
603 'base/macsocketserver.h',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000604 'base/macutils.cc',
605 'base/macutils.h',
606 'base/macwindowpicker.cc',
607 'base/macwindowpicker.h',
608 'base/scoped_autorelease_pool.mm',
609 ],
610 'link_settings': {
611 'libraries': [
fischman@webrtc.orge3de6b12013-08-26 19:31:21 +0000612 '$(SDKROOT)/usr/lib/libcrypto.dylib',
613 '$(SDKROOT)/usr/lib/libssl.dylib',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000614 ],
fischman@webrtc.orge3de6b12013-08-26 19:31:21 +0000615 },
616 'all_dependent_settings': {
617 'link_settings': {
618 'xcode_settings': {
619 'OTHER_LDFLAGS': [
620 '-framework Cocoa',
621 '-framework Foundation',
622 '-framework IOKit',
623 '-framework Security',
624 '-framework SystemConfiguration',
625 ],
626 },
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000627 },
628 },
fischman@webrtc.orge3de6b12013-08-26 19:31:21 +0000629 'conditions': [
630 ['target_arch=="ia32"', {
631 'all_dependent_settings': {
632 'link_settings': {
633 'xcode_settings': {
634 'OTHER_LDFLAGS': [
635 '-framework Carbon',
636 ],
637 },
638 },
639 },
640 }],
641 ],
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000642 }],
643 ['OS=="ios"', {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000644 'sources': [
645 'base/scoped_autorelease_pool.mm',
646 ],
fischman@webrtc.org1bc19542013-08-01 18:29:45 +0000647 'dependencies': [
648 '../net/third_party/nss/ssl.gyp:libssl',
649 ],
fischman@webrtc.orge3de6b12013-08-26 19:31:21 +0000650 'all_dependent_settings': {
651 'xcode_settings': {
652 'OTHER_LDFLAGS': [
653 '-framework Foundation',
654 '-framework IOKit',
655 '-framework Security',
656 '-framework SystemConfiguration',
657 '-framework UIKit',
658 ],
659 },
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000660 },
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000661 }],
662 ['OS=="win"', {
663 'sources': [
664 'base/diskcache_win32.cc',
665 'base/diskcache_win32.h',
666 'base/schanneladapter.cc',
667 'base/schanneladapter.h',
668 'base/win32.cc',
669 'base/win32.h',
670 'base/win32filesystem.cc',
671 'base/win32filesystem.h',
672 'base/win32regkey.cc',
673 'base/win32regkey.h',
674 'base/win32securityerrors.cc',
675 'base/win32socketinit.cc',
676 'base/win32socketinit.h',
677 'base/win32socketserver.cc',
678 'base/win32socketserver.h',
679 'base/win32window.cc',
680 'base/win32window.h',
681 'base/win32windowpicker.cc',
682 'base/win32windowpicker.h',
683 'base/winfirewall.cc',
684 'base/winfirewall.h',
685 'base/winping.cc',
686 'base/winping.h',
687 ],
henrike@webrtc.org28654cb2013-07-22 21:07:49 +0000688 'link_settings': {
689 'libraries': [
690 '-lcrypt32.lib',
691 '-liphlpapi.lib',
692 '-lsecur32.lib',
693 ],
694 },
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000695 # Suppress warnings about WIN32_LEAN_AND_MEAN.
696 'msvs_disabled_warnings': [4005],
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000697 }],
698 ['os_posix==1', {
699 'sources': [
700 'base/latebindingsymboltable.cc',
701 'base/latebindingsymboltable.h',
702 'base/posix.cc',
703 'base/posix.h',
704 'base/unixfilesystem.cc',
705 'base/unixfilesystem.h',
706 ],
707 'conditions': [
708 ['OS=="linux" or OS=="android"', {
709 'dependencies': [
710 '<(DEPTH)/third_party/openssl/openssl.gyp:openssl',
711 ],
712 }],
713 ['OS!="ios"', {
714 'sources': [
715 'base/openssladapter.cc',
716 'base/openssladapter.h',
717 'base/openssldigest.cc',
718 'base/openssldigest.h',
719 'base/opensslidentity.cc',
720 'base/opensslidentity.h',
721 'base/opensslstreamadapter.cc',
722 'base/opensslstreamadapter.h',
723 ],
724 }],
725 ],
726 }],
727 ], # conditions
728 }, # target libjingle
729 {
730 'target_name': 'libjingle_sound',
731 'type': 'static_library',
732 'dependencies': [
733 'libjingle',
734 ],
735 'sources': [
736 'sound/automaticallychosensoundsystem.h',
737 'sound/nullsoundsystem.cc',
738 'sound/nullsoundsystem.h',
739 'sound/nullsoundsystemfactory.cc',
740 'sound/nullsoundsystemfactory.h',
741 'sound/platformsoundsystem.cc',
742 'sound/platformsoundsystem.h',
743 'sound/platformsoundsystemfactory.cc',
744 'sound/platformsoundsystemfactory.h',
745 'sound/sounddevicelocator.h',
746 'sound/soundinputstreaminterface.h',
747 'sound/soundoutputstreaminterface.h',
748 'sound/soundsystemfactory.h',
749 'sound/soundsysteminterface.cc',
750 'sound/soundsysteminterface.h',
751 'sound/soundsystemproxy.cc',
752 'sound/soundsystemproxy.h',
753 ],
754 'conditions': [
755 ['OS=="linux"', {
756 'sources': [
757 'sound/alsasoundsystem.cc',
758 'sound/alsasoundsystem.h',
759 'sound/alsasymboltable.cc',
760 'sound/alsasymboltable.h',
761 'sound/linuxsoundsystem.cc',
762 'sound/linuxsoundsystem.h',
763 'sound/pulseaudiosoundsystem.cc',
764 'sound/pulseaudiosoundsystem.h',
765 'sound/pulseaudiosymboltable.cc',
766 'sound/pulseaudiosymboltable.h',
767 ],
768 }],
769 ],
770 }, # target libjingle_sound
771 {
772 'target_name': 'libjingle_media',
773 'type': 'static_library',
774 'dependencies': [
775 '<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv',
henrike@webrtc.org9de257d2013-07-17 14:42:53 +0000776 '<(webrtc_root)/modules/modules.gyp:video_capture_module',
777 '<(webrtc_root)/modules/modules.gyp:video_render_module',
778 '<(webrtc_root)/video_engine/video_engine.gyp:video_engine_core',
779 '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine',
780 '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000781 'libjingle',
782 'libjingle_sound',
783 ],
784 'direct_dependent_settings': {
785 'include_dirs': [
786 '<(DEPTH)/third_party/libyuv/include',
787 ],
788 },
789 'sources': [
790 'media/base/audioframe.h',
791 'media/base/audiorenderer.h',
792 'media/base/capturemanager.cc',
793 'media/base/capturemanager.h',
794 'media/base/capturerenderadapter.cc',
795 'media/base/capturerenderadapter.h',
796 'media/base/codec.cc',
797 'media/base/codec.h',
798 'media/base/constants.cc',
799 'media/base/constants.h',
800 'media/base/cpuid.cc',
801 'media/base/cpuid.h',
802 'media/base/cryptoparams.h',
803 'media/base/filemediaengine.cc',
804 'media/base/filemediaengine.h',
805 'media/base/hybriddataengine.h',
806 'media/base/hybridvideoengine.cc',
807 'media/base/hybridvideoengine.h',
808 'media/base/mediachannel.h',
809 'media/base/mediacommon.h',
810 'media/base/mediaengine.cc',
811 'media/base/mediaengine.h',
812 'media/base/mutedvideocapturer.cc',
813 'media/base/mutedvideocapturer.h',
814 'media/base/rtpdataengine.cc',
815 'media/base/rtpdataengine.h',
816 'media/base/rtpdump.cc',
817 'media/base/rtpdump.h',
818 'media/base/rtputils.cc',
819 'media/base/rtputils.h',
820 'media/base/screencastid.h',
821 'media/base/streamparams.cc',
822 'media/base/streamparams.h',
823 'media/base/videoadapter.cc',
824 'media/base/videoadapter.h',
825 'media/base/videocapturer.cc',
826 'media/base/videocapturer.h',
827 'media/base/videocommon.cc',
828 'media/base/videocommon.h',
829 'media/base/videoframe.cc',
830 'media/base/videoframe.h',
831 'media/base/videoprocessor.h',
832 'media/base/videorenderer.h',
833 'media/base/voiceprocessor.h',
834 'media/devices/deviceinfo.h',
835 'media/devices/devicemanager.cc',
836 'media/devices/devicemanager.h',
837 'media/devices/dummydevicemanager.h',
838 'media/devices/filevideocapturer.cc',
839 'media/devices/filevideocapturer.h',
840 'media/devices/videorendererfactory.h',
841 'media/other/linphonemediaengine.h',
842 # TODO(ronghuawu): Enable when SCTP is ready.
843 # 'media/sctp/sctpdataengine.cc',
844 # 'media/sctp/sctpdataengine.h',
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +0000845 'media/sctp/sctputils.cc',
846 'media/sctp/sctputils.h',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000847 'media/webrtc/webrtccommon.h',
848 'media/webrtc/webrtcexport.h',
849 'media/webrtc/webrtcmediaengine.h',
850 'media/webrtc/webrtcpassthroughrender.cc',
851 'media/webrtc/webrtcpassthroughrender.h',
wu@webrtc.org9dba5252013-08-05 20:36:57 +0000852 'media/webrtc/webrtctexturevideoframe.cc',
853 'media/webrtc/webrtctexturevideoframe.h',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000854 'media/webrtc/webrtcvideocapturer.cc',
855 'media/webrtc/webrtcvideocapturer.h',
856 'media/webrtc/webrtcvideodecoderfactory.h',
857 'media/webrtc/webrtcvideoencoderfactory.h',
858 'media/webrtc/webrtcvideoengine.cc',
859 'media/webrtc/webrtcvideoengine.h',
860 'media/webrtc/webrtcvideoframe.cc',
861 'media/webrtc/webrtcvideoframe.h',
862 'media/webrtc/webrtcvie.h',
863 'media/webrtc/webrtcvoe.h',
864 'media/webrtc/webrtcvoiceengine.cc',
865 'media/webrtc/webrtcvoiceengine.h',
866 ],
867 'conditions': [
868 ['OS=="linux"', {
869 'sources': [
870 'media/devices/gtkvideorenderer.cc',
871 'media/devices/gtkvideorenderer.h',
872 'media/devices/libudevsymboltable.cc',
873 'media/devices/libudevsymboltable.h',
874 'media/devices/linuxdeviceinfo.cc',
875 'media/devices/linuxdevicemanager.cc',
876 'media/devices/linuxdevicemanager.h',
877 'media/devices/v4llookup.cc',
878 'media/devices/v4llookup.h',
879 ],
880 'include_dirs': [
881 'third_party/libudev'
882 ],
883 'cflags': [
884 '<!@(pkg-config --cflags gobject-2.0 gthread-2.0 gtk+-2.0)',
885 ],
886 'libraries': [
887 '-lrt',
888 '-lXext',
889 '-lX11',
890 ],
891 }],
892 ['OS=="win"', {
893 'sources': [
894 'media/devices/gdivideorenderer.cc',
895 'media/devices/gdivideorenderer.h',
896 'media/devices/win32deviceinfo.cc',
897 'media/devices/win32devicemanager.cc',
898 'media/devices/win32devicemanager.h',
899 ],
900 'msvs_settings': {
901 'VCLibrarianTool': {
902 'AdditionalDependencies': [
903 'd3d9.lib',
904 'gdi32.lib',
905 'strmiids.lib',
906 'winmm.lib',
907 ],
908 },
909 },
910 }],
911 ['OS=="mac"', {
912 'sources': [
913 'media/devices/macdeviceinfo.cc',
914 'media/devices/macdevicemanager.cc',
915 'media/devices/macdevicemanager.h',
916 'media/devices/macdevicemanagermm.mm',
917 ],
918 'conditions': [
fischman@webrtc.orge3de6b12013-08-26 19:31:21 +0000919 ['target_arch=="ia32"', {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000920 'sources': [
921 'media/devices/carbonvideorenderer.cc',
922 'media/devices/carbonvideorenderer.h',
923 ],
fischman@webrtc.orge3de6b12013-08-26 19:31:21 +0000924 'link_settings': {
925 'xcode_settings': {
926 'OTHER_LDFLAGS': [
927 '-framework Carbon',
928 ],
929 },
930 },
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000931 }],
932 ],
933 'xcode_settings': {
934 'WARNING_CFLAGS': [
935 # TODO(ronghuawu): Update macdevicemanager.cc to stop using
936 # deprecated functions and remove this flag.
937 '-Wno-deprecated-declarations',
938 ],
939 },
940 'link_settings': {
941 'xcode_settings': {
942 'OTHER_LDFLAGS': [
943 '-framework Cocoa',
944 '-framework CoreAudio',
945 '-framework CoreVideo',
946 '-framework OpenGL',
947 '-framework QTKit',
948 ],
949 },
950 },
951 }],
952 ['OS=="ios"', {
953 'sources': [
954 'media/devices/iosdeviceinfo.cc',
955 'media/devices/mobiledevicemanager.cc',
956 ],
957 'include_dirs': [
958 # TODO(sjlee) Remove when vp8 is building for iOS. vp8 pulls in
959 # libjpeg which pulls in libyuv which currently disabled.
960 '../third_party/libyuv/include',
961 ],
962 }],
963 ['OS=="android"', {
964 'sources': [
965 'media/devices/mobiledevicemanager.cc',
966 ],
967 }],
968 ],
969 }, # target libjingle_media
970 {
971 'target_name': 'libjingle_p2p',
972 'type': 'static_library',
973 'dependencies': [
974 '<(DEPTH)/third_party/libsrtp/libsrtp.gyp:libsrtp',
975 'libjingle',
976 'libjingle_media',
977 ],
978 'include_dirs': [
henrike@webrtc.org723d6832013-07-12 16:04:50 +0000979 '<(DEPTH)/testing/gtest/include',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000980 ],
981 'direct_dependent_settings': {
982 'include_dirs': [
henrike@webrtc.org723d6832013-07-12 16:04:50 +0000983 '<(DEPTH)/testing/gtest/include',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000984 ],
985 },
986 'defines': [
987 # TODO(ronghuawu): enable SCTP when it's ready.
988 # 'HAVE_SCTP',
989 ],
990 'sources': [
991 'p2p/base/asyncstuntcpsocket.cc',
992 'p2p/base/asyncstuntcpsocket.h',
993 'p2p/base/basicpacketsocketfactory.cc',
994 'p2p/base/basicpacketsocketfactory.h',
995 'p2p/base/candidate.h',
996 'p2p/base/common.h',
997 'p2p/base/constants.cc',
998 'p2p/base/constants.h',
999 'p2p/base/dtlstransportchannel.cc',
1000 'p2p/base/dtlstransportchannel.h',
1001 'p2p/base/p2ptransport.cc',
1002 'p2p/base/p2ptransport.h',
1003 'p2p/base/p2ptransportchannel.cc',
1004 'p2p/base/p2ptransportchannel.h',
1005 'p2p/base/packetsocketfactory.h',
1006 'p2p/base/parsing.cc',
1007 'p2p/base/parsing.h',
1008 'p2p/base/port.cc',
1009 'p2p/base/port.h',
1010 'p2p/base/portallocator.cc',
1011 'p2p/base/portallocator.h',
1012 'p2p/base/portallocatorsessionproxy.cc',
1013 'p2p/base/portallocatorsessionproxy.h',
1014 'p2p/base/portinterface.h',
1015 'p2p/base/portproxy.cc',
1016 'p2p/base/portproxy.h',
1017 'p2p/base/pseudotcp.cc',
1018 'p2p/base/pseudotcp.h',
1019 'p2p/base/rawtransport.cc',
1020 'p2p/base/rawtransport.h',
1021 'p2p/base/rawtransportchannel.cc',
1022 'p2p/base/rawtransportchannel.h',
1023 'p2p/base/relayport.cc',
1024 'p2p/base/relayport.h',
1025 'p2p/base/relayserver.cc',
1026 'p2p/base/relayserver.h',
1027 'p2p/base/session.cc',
1028 'p2p/base/session.h',
1029 'p2p/base/sessionclient.h',
1030 'p2p/base/sessiondescription.cc',
1031 'p2p/base/sessiondescription.h',
1032 'p2p/base/sessionid.h',
1033 'p2p/base/sessionmanager.cc',
1034 'p2p/base/sessionmanager.h',
1035 'p2p/base/sessionmessages.cc',
1036 'p2p/base/sessionmessages.h',
1037 'p2p/base/stun.cc',
1038 'p2p/base/stun.h',
1039 'p2p/base/stunport.cc',
1040 'p2p/base/stunport.h',
1041 'p2p/base/stunrequest.cc',
1042 'p2p/base/stunrequest.h',
1043 'p2p/base/stunserver.cc',
1044 'p2p/base/stunserver.h',
1045 'p2p/base/tcpport.cc',
1046 'p2p/base/tcpport.h',
1047 'p2p/base/transport.cc',
1048 'p2p/base/transport.h',
1049 'p2p/base/transportchannel.cc',
1050 'p2p/base/transportchannel.h',
1051 'p2p/base/transportchannelimpl.h',
1052 'p2p/base/transportchannelproxy.cc',
1053 'p2p/base/transportchannelproxy.h',
sergeyu@chromium.org492e3152013-08-24 00:06:43 +00001054 'p2p/base/transportdescription.cc',
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001055 'p2p/base/transportdescription.h',
1056 'p2p/base/transportdescriptionfactory.cc',
1057 'p2p/base/transportdescriptionfactory.h',
1058 'p2p/base/transportinfo.h',
1059 'p2p/base/turnport.cc',
1060 'p2p/base/turnport.h',
1061 'p2p/base/turnserver.cc',
1062 'p2p/base/turnserver.h',
1063 'p2p/base/udpport.h',
1064 'p2p/client/autoportallocator.h',
1065 'p2p/client/basicportallocator.cc',
1066 'p2p/client/basicportallocator.h',
1067 'p2p/client/connectivitychecker.cc',
1068 'p2p/client/connectivitychecker.h',
1069 'p2p/client/httpportallocator.cc',
1070 'p2p/client/httpportallocator.h',
1071 'p2p/client/sessionmanagertask.h',
1072 'p2p/client/sessionsendtask.h',
1073 'p2p/client/socketmonitor.cc',
1074 'p2p/client/socketmonitor.h',
1075 'session/tunnel/pseudotcpchannel.cc',
1076 'session/tunnel/pseudotcpchannel.h',
1077 'session/tunnel/tunnelsessionclient.cc',
1078 'session/tunnel/tunnelsessionclient.h',
1079 'session/tunnel/securetunnelsessionclient.cc',
1080 'session/tunnel/securetunnelsessionclient.h',
1081 'session/media/audiomonitor.cc',
1082 'session/media/audiomonitor.h',
1083 'session/media/call.cc',
1084 'session/media/call.h',
1085 'session/media/channel.cc',
1086 'session/media/channel.h',
1087 'session/media/channelmanager.cc',
1088 'session/media/channelmanager.h',
1089 'session/media/currentspeakermonitor.cc',
1090 'session/media/currentspeakermonitor.h',
1091 'session/media/mediamessages.cc',
1092 'session/media/mediamessages.h',
1093 'session/media/mediamonitor.cc',
1094 'session/media/mediamonitor.h',
1095 'session/media/mediarecorder.cc',
1096 'session/media/mediarecorder.h',
1097 'session/media/mediasession.cc',
1098 'session/media/mediasession.h',
1099 'session/media/mediasessionclient.cc',
1100 'session/media/mediasessionclient.h',
1101 'session/media/mediasink.h',
1102 'session/media/rtcpmuxfilter.cc',
1103 'session/media/rtcpmuxfilter.h',
1104 'session/media/soundclip.cc',
1105 'session/media/soundclip.h',
1106 'session/media/srtpfilter.cc',
1107 'session/media/srtpfilter.h',
1108 'session/media/ssrcmuxfilter.cc',
1109 'session/media/ssrcmuxfilter.h',
1110 'session/media/typingmonitor.cc',
1111 'session/media/typingmonitor.h',
1112 'session/media/voicechannel.h',
1113 ],
1114 }, # target libjingle_p2p
1115 {
1116 'target_name': 'libjingle_peerconnection',
1117 'type': 'static_library',
1118 'dependencies': [
1119 'libjingle',
1120 'libjingle_media',
1121 'libjingle_p2p',
1122 ],
1123 'sources': [
1124 'app/webrtc/audiotrack.cc',
1125 'app/webrtc/audiotrack.h',
1126 'app/webrtc/audiotrackrenderer.cc',
1127 'app/webrtc/audiotrackrenderer.h',
1128 'app/webrtc/datachannel.cc',
1129 'app/webrtc/datachannel.h',
1130 'app/webrtc/datachannelinterface.h',
1131 'app/webrtc/dtmfsender.cc',
1132 'app/webrtc/dtmfsender.h',
1133 'app/webrtc/dtmfsenderinterface.h',
1134 'app/webrtc/fakeportallocatorfactory.h',
1135 'app/webrtc/jsep.h',
1136 'app/webrtc/jsepicecandidate.cc',
1137 'app/webrtc/jsepicecandidate.h',
1138 'app/webrtc/jsepsessiondescription.cc',
1139 'app/webrtc/jsepsessiondescription.h',
1140 'app/webrtc/localaudiosource.cc',
1141 'app/webrtc/localaudiosource.h',
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001142 'app/webrtc/mediaconstraintsinterface.cc',
1143 'app/webrtc/mediaconstraintsinterface.h',
1144 'app/webrtc/mediastream.cc',
1145 'app/webrtc/mediastream.h',
1146 'app/webrtc/mediastreamhandler.cc',
1147 'app/webrtc/mediastreamhandler.h',
1148 'app/webrtc/mediastreaminterface.h',
1149 'app/webrtc/mediastreamprovider.h',
1150 'app/webrtc/mediastreamproxy.h',
1151 'app/webrtc/mediastreamsignaling.cc',
1152 'app/webrtc/mediastreamsignaling.h',
1153 'app/webrtc/mediastreamtrack.h',
1154 'app/webrtc/mediastreamtrackproxy.h',
1155 'app/webrtc/notifier.h',
1156 'app/webrtc/peerconnection.cc',
1157 'app/webrtc/peerconnection.h',
1158 'app/webrtc/peerconnectionfactory.cc',
1159 'app/webrtc/peerconnectionfactory.h',
1160 'app/webrtc/peerconnectioninterface.h',
1161 'app/webrtc/peerconnectionproxy.h',
1162 'app/webrtc/portallocatorfactory.cc',
1163 'app/webrtc/portallocatorfactory.h',
1164 'app/webrtc/proxy.h',
wu@webrtc.org967bfff2013-09-19 05:49:50 +00001165 'app/webrtc/remotevideocapturer.cc',
1166 'app/webrtc/remotevideocapturer.h',
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001167 'app/webrtc/statscollector.cc',
1168 'app/webrtc/statscollector.h',
1169 'app/webrtc/statstypes.h',
1170 'app/webrtc/streamcollection.h',
wu@webrtc.org967bfff2013-09-19 05:49:50 +00001171 'app/webrtc/videosource.cc',
1172 'app/webrtc/videosource.h',
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001173 'app/webrtc/videosourceinterface.h',
1174 'app/webrtc/videosourceproxy.h',
1175 'app/webrtc/videotrack.cc',
1176 'app/webrtc/videotrack.h',
1177 'app/webrtc/videotrackrenderers.cc',
1178 'app/webrtc/videotrackrenderers.h',
1179 'app/webrtc/webrtcsdp.cc',
1180 'app/webrtc/webrtcsdp.h',
1181 'app/webrtc/webrtcsession.cc',
1182 'app/webrtc/webrtcsession.h',
wu@webrtc.org91053e72013-08-10 07:18:04 +00001183 'app/webrtc/webrtcsessiondescriptionfactory.cc',
1184 'app/webrtc/webrtcsessiondescriptionfactory.h',
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001185 ],
1186 }, # target libjingle_peerconnection
1187 ],
1188}