blob: b91de3c5e111946b3e95a99a1b3e584e4996b6b7 [file] [log] [blame]
henrike@webrtc.org28e20752013-07-10 00:45:361#
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:3645 ['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:5382 'webrtc_modules_dir': '<(webrtc_root)/modules',
henrike@webrtc.org28e20752013-07-10 00:45:3683 '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:5086 'app/webrtc/java/src/org/webrtc/DataChannel.java',
henrike@webrtc.org28e20752013-07-10 00:45:3687 'app/webrtc/java/src/org/webrtc/IceCandidate.java',
fischman@webrtc.orgc883fdc2013-08-06 19:00:5388 'app/webrtc/java/src/org/webrtc/Logging.java',
henrike@webrtc.org28e20752013-07-10 00:45:3689 '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:53108 '<(webrtc_modules_dir)/audio_device/android/java/src/org/webrtc/voiceengine/WebRTCAudioDevice.java',
henrike@webrtc.org82f014a2013-09-10 18:24:07109 '<(webrtc_modules_dir)/audio_device/android/java/src/org/webrtc/voiceengine/AudioManagerAndroid.java',
henrike@webrtc.org9de257d2013-07-17 14:42:53110 '<(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:36116 ],
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:21153 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', {
henrike@webrtc.org28e20752013-07-10 00:45:36154 '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:45167 '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:36171 '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:45200 'app/webrtc/objc/public/RTCICECandidate.h',
201 'app/webrtc/objc/public/RTCICEServer.h',
henrike@webrtc.org28e20752013-07-10 00:45:36202 '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:45219 'direct_dependent_settings': {
220 'include_dirs': [
221 '<(DEPTH)/talk/app/webrtc/objc/public',
222 ],
223 },
henrike@webrtc.org28e20752013-07-10 00:45:36224 'include_dirs': [
225 '<(DEPTH)/talk/app/webrtc',
226 '<(DEPTH)/talk/app/webrtc/objc',
227 '<(DEPTH)/talk/app/webrtc/objc/public',
228 ],
229 'link_settings': {
230 'libraries': [
231 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
232 ],
233 },
234 'xcode_settings': {
235 'CLANG_ENABLE_OBJC_ARC': 'YES',
henrike@webrtc.org28e20752013-07-10 00:45:36236 },
fischman@webrtc.orge3de6b12013-08-26 19:31:21237 }, # target libjingle_peerconnection_objc
238 ],
henrike@webrtc.org28e20752013-07-10 00:45:36239 }],
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',
260 'base/asyncsocket.cc',
261 'base/asyncsocket.h',
262 'base/asynctcpsocket.cc',
263 'base/asynctcpsocket.h',
264 'base/asyncudpsocket.cc',
265 'base/asyncudpsocket.h',
266 'base/atomicops.h',
267 'base/autodetectproxy.cc',
268 'base/autodetectproxy.h',
269 'base/bandwidthsmoother.cc',
270 'base/bandwidthsmoother.h',
271 'base/base64.cc',
272 'base/base64.h',
273 'base/basicdefs.h',
274 'base/basictypes.h',
275 'base/bind.h',
276 'base/buffer.h',
277 'base/bytebuffer.cc',
278 'base/bytebuffer.h',
279 'base/byteorder.h',
280 'base/checks.cc',
281 'base/checks.h',
282 'base/common.cc',
283 'base/common.h',
284 'base/constructormagic.h',
285 'base/cpumonitor.cc',
286 'base/cpumonitor.h',
287 'base/crc32.cc',
288 'base/crc32.h',
289 'base/criticalsection.h',
290 'base/cryptstring.h',
291 'base/diskcache.cc',
292 'base/diskcache.h',
293 'base/event.cc',
294 'base/event.h',
295 'base/filelock.cc',
296 'base/filelock.h',
297 'base/fileutils.cc',
298 'base/fileutils.h',
299 'base/fileutils_mock.h',
300 'base/firewallsocketserver.cc',
301 'base/firewallsocketserver.h',
302 'base/flags.cc',
303 'base/flags.h',
304 'base/gunit_prod.h',
305 'base/helpers.cc',
306 'base/helpers.h',
henrike@webrtc.org28e20752013-07-10 00:45:36307 'base/httpbase.cc',
308 'base/httpbase.h',
309 'base/httpclient.cc',
310 'base/httpclient.h',
311 'base/httpcommon-inl.h',
312 'base/httpcommon.cc',
313 'base/httpcommon.h',
314 'base/httprequest.cc',
315 'base/httprequest.h',
316 'base/httpserver.cc',
317 'base/httpserver.h',
318 'base/ifaddrs-android.cc',
319 'base/ifaddrs-android.h',
320 'base/ipaddress.cc',
321 'base/ipaddress.h',
322 'base/json.cc',
323 'base/json.h',
324 'base/linked_ptr.h',
325 'base/linuxfdwalk.h',
326 'base/logging.cc',
327 'base/logging.h',
328 'base/maccocoathreadhelper.h',
329 'base/maccocoathreadhelper.mm',
330 'base/mathutils.h',
331 'base/md5.cc',
332 'base/md5.h',
333 'base/md5digest.h',
334 'base/messagedigest.cc',
335 'base/messagedigest.h',
336 'base/messagehandler.cc',
337 'base/messagehandler.h',
338 'base/messagequeue.cc',
339 'base/messagequeue.h',
340 'base/multipart.cc',
341 'base/multipart.h',
342 'base/natserver.cc',
343 'base/natserver.h',
344 'base/natsocketfactory.cc',
345 'base/natsocketfactory.h',
346 'base/nattypes.cc',
347 'base/nattypes.h',
348 'base/nethelpers.cc',
349 'base/nethelpers.h',
350 'base/network.cc',
351 'base/network.h',
352 'base/nssidentity.cc',
353 'base/nssidentity.h',
354 'base/nssstreamadapter.cc',
355 'base/nssstreamadapter.h',
356 'base/nullsocketserver.h',
357 'base/optionsfile.cc',
358 'base/optionsfile.h',
359 'base/pathutils.cc',
360 'base/pathutils.h',
361 'base/physicalsocketserver.cc',
362 'base/physicalsocketserver.h',
363 'base/profiler.cc',
364 'base/profiler.h',
365 'base/proxydetect.cc',
366 'base/proxydetect.h',
367 'base/proxyinfo.cc',
368 'base/proxyinfo.h',
369 'base/proxyserver.cc',
370 'base/proxyserver.h',
371 'base/ratelimiter.cc',
372 'base/ratelimiter.h',
373 'base/ratetracker.cc',
374 'base/ratetracker.h',
375 'base/refcount.h',
376 'base/referencecountedsingletonfactory.h',
377 'base/rollingaccumulator.h',
378 'base/scoped_autorelease_pool.h',
379 'base/scoped_ptr.h',
380 'base/scoped_ref_ptr.h',
381 'base/sec_buffer.h',
382 'base/sha1.cc',
383 'base/sha1.h',
384 'base/sha1digest.h',
385 'base/sharedexclusivelock.cc',
386 'base/sharedexclusivelock.h',
387 'base/signalthread.cc',
388 'base/signalthread.h',
389 'base/sigslot.h',
390 'base/sigslotrepeater.h',
391 'base/socket.h',
392 'base/socketadapters.cc',
393 'base/socketadapters.h',
394 'base/socketaddress.cc',
395 'base/socketaddress.h',
396 'base/socketaddresspair.cc',
397 'base/socketaddresspair.h',
398 'base/socketfactory.h',
399 'base/socketpool.cc',
400 'base/socketpool.h',
401 'base/socketserver.h',
402 'base/socketstream.cc',
403 'base/socketstream.h',
404 'base/ssladapter.cc',
405 'base/ssladapter.h',
406 'base/sslconfig.h',
407 'base/sslfingerprint.h',
408 'base/sslidentity.cc',
409 'base/sslidentity.h',
410 'base/sslroots.h',
411 'base/sslsocketfactory.cc',
412 'base/sslsocketfactory.h',
413 'base/sslstreamadapter.cc',
414 'base/sslstreamadapter.h',
415 'base/sslstreamadapterhelper.cc',
416 'base/sslstreamadapterhelper.h',
417 'base/stream.cc',
418 'base/stream.h',
419 'base/stringdigest.h',
420 'base/stringencode.cc',
421 'base/stringencode.h',
422 'base/stringutils.cc',
423 'base/stringutils.h',
424 'base/systeminfo.cc',
425 'base/systeminfo.h',
426 'base/task.cc',
427 'base/task.h',
428 'base/taskparent.cc',
429 'base/taskparent.h',
430 'base/taskrunner.cc',
431 'base/taskrunner.h',
432 'base/testclient.cc',
433 'base/testclient.h',
434 'base/thread.cc',
435 'base/thread.h',
436 'base/timeutils.cc',
437 'base/timeutils.h',
438 'base/timing.cc',
439 'base/timing.h',
440 'base/transformadapter.cc',
441 'base/transformadapter.h',
442 'base/urlencode.cc',
443 'base/urlencode.h',
444 'base/versionparsing.cc',
445 'base/versionparsing.h',
446 'base/virtualsocketserver.cc',
447 'base/virtualsocketserver.h',
448 'base/window.h',
449 'base/windowpicker.h',
450 'base/windowpickerfactory.h',
451 'base/worker.cc',
452 'base/worker.h',
453 'xmllite/qname.cc',
454 'xmllite/qname.h',
455 'xmllite/xmlbuilder.cc',
456 'xmllite/xmlbuilder.h',
457 'xmllite/xmlconstants.cc',
458 'xmllite/xmlconstants.h',
459 'xmllite/xmlelement.cc',
460 'xmllite/xmlelement.h',
461 'xmllite/xmlnsstack.cc',
462 'xmllite/xmlnsstack.h',
463 'xmllite/xmlparser.cc',
464 'xmllite/xmlparser.h',
465 'xmllite/xmlprinter.cc',
466 'xmllite/xmlprinter.h',
467 'xmpp/asyncsocket.h',
468 'xmpp/chatroommodule.h',
469 'xmpp/chatroommoduleimpl.cc',
470 'xmpp/constants.cc',
471 'xmpp/constants.h',
472 'xmpp/discoitemsquerytask.cc',
473 'xmpp/discoitemsquerytask.h',
474 'xmpp/hangoutpubsubclient.cc',
475 'xmpp/hangoutpubsubclient.h',
476 'xmpp/iqtask.cc',
477 'xmpp/iqtask.h',
478 'xmpp/jid.cc',
479 'xmpp/jid.h',
480 'xmpp/module.h',
481 'xmpp/moduleimpl.cc',
482 'xmpp/moduleimpl.h',
483 'xmpp/mucroomconfigtask.cc',
484 'xmpp/mucroomconfigtask.h',
485 'xmpp/mucroomdiscoverytask.cc',
486 'xmpp/mucroomdiscoverytask.h',
487 'xmpp/mucroomlookuptask.cc',
488 'xmpp/mucroomlookuptask.h',
489 'xmpp/mucroomuniquehangoutidtask.cc',
490 'xmpp/mucroomuniquehangoutidtask.h',
491 'xmpp/pingtask.cc',
492 'xmpp/pingtask.h',
493 'xmpp/plainsaslhandler.h',
494 'xmpp/presenceouttask.cc',
495 'xmpp/presenceouttask.h',
496 'xmpp/presencereceivetask.cc',
497 'xmpp/presencereceivetask.h',
498 'xmpp/presencestatus.cc',
499 'xmpp/presencestatus.h',
500 'xmpp/prexmppauth.h',
501 'xmpp/pubsub_task.cc',
502 'xmpp/pubsub_task.h',
503 'xmpp/pubsubclient.cc',
504 'xmpp/pubsubclient.h',
505 'xmpp/pubsubtasks.cc',
506 'xmpp/pubsubtasks.h',
507 'xmpp/receivetask.cc',
508 'xmpp/receivetask.h',
509 'xmpp/rostermodule.h',
510 'xmpp/rostermoduleimpl.cc',
511 'xmpp/rostermoduleimpl.h',
512 'xmpp/saslcookiemechanism.h',
513 'xmpp/saslhandler.h',
514 'xmpp/saslmechanism.cc',
515 'xmpp/saslmechanism.h',
516 'xmpp/saslplainmechanism.h',
517 'xmpp/xmppauth.cc',
518 'xmpp/xmppauth.h',
519 'xmpp/xmppclient.cc',
520 'xmpp/xmppclient.h',
521 'xmpp/xmppclientsettings.h',
522 'xmpp/xmppengine.h',
523 'xmpp/xmppengineimpl.cc',
524 'xmpp/xmppengineimpl.h',
525 'xmpp/xmppengineimpl_iq.cc',
526 'xmpp/xmpplogintask.cc',
527 'xmpp/xmpplogintask.h',
528 'xmpp/xmpppump.cc',
529 'xmpp/xmpppump.h',
530 'xmpp/xmppsocket.cc',
531 'xmpp/xmppsocket.h',
532 'xmpp/xmppstanzaparser.cc',
533 'xmpp/xmppstanzaparser.h',
534 'xmpp/xmpptask.cc',
535 'xmpp/xmpptask.h',
536 'xmpp/xmppthread.cc',
537 'xmpp/xmppthread.h',
538 ],
539 'conditions': [
540 ['OS=="mac" or OS=="ios" or OS=="win"', {
541 'dependencies': [
542 # The chromium copy of nss should NOT be used on platforms that
543 # have NSS as system libraries, such as linux.
544 '<(DEPTH)/third_party/nss/nss.gyp:nss',
545 ],
546 }],
547 ['OS=="android"', {
548 'sources': [
549 'base/ifaddrs-android.cc',
550 ],
551 'link_settings': {
552 'libraries': [
553 '-llog',
554 '-lGLESv2',
555 ],
556 },
557 }],
558 ['OS=="linux" or OS=="android"', {
559 'sources': [
560 'base/linux.cc',
561 'base/linux.h',
562 ],
563 }],
564 ['OS=="linux"', {
565 'sources': [
566 'base/dbus.cc',
567 'base/dbus.h',
568 'base/libdbusglibsymboltable.cc',
569 'base/libdbusglibsymboltable.h',
570 'base/linuxfdwalk.c',
571 'base/linuxwindowpicker.cc',
572 'base/linuxwindowpicker.h',
573 ],
574 'link_settings': {
575 'libraries': [
576 '-lcrypto',
577 '-ldl',
578 '-lrt',
henrike@webrtc.org28e20752013-07-10 00:45:36579 '-lXext',
580 '-lX11',
581 '-lXcomposite',
582 '-lXrender',
583 '<!@(<(pkg-config) --libs-only-l nss | sed -e "s/-lssl3//")',
584 ],
585 },
586 'cflags': [
587 '<!@(<(pkg-config) --cflags nss)',
588 ],
589 'ldflags': [
590 '<!@(<(pkg-config) --libs-only-L --libs-only-other nss)',
591 ],
592 }],
593 ['OS=="mac"', {
henrike@webrtc.org28e20752013-07-10 00:45:36594 'sources': [
henrike@webrtc.org723d6832013-07-12 16:04:50595 'base/macasyncsocket.cc',
596 'base/macasyncsocket.h',
597 'base/maccocoasocketserver.h',
598 'base/maccocoasocketserver.mm',
henrike@webrtc.org28e20752013-07-10 00:45:36599 'base/macconversion.cc',
600 'base/macconversion.h',
henrike@webrtc.org723d6832013-07-12 16:04:50601 'base/macsocketserver.cc',
602 'base/macsocketserver.h',
henrike@webrtc.org28e20752013-07-10 00:45:36603 'base/macutils.cc',
604 'base/macutils.h',
605 'base/macwindowpicker.cc',
606 'base/macwindowpicker.h',
607 'base/scoped_autorelease_pool.mm',
608 ],
609 'link_settings': {
610 'libraries': [
fischman@webrtc.orge3de6b12013-08-26 19:31:21611 '$(SDKROOT)/usr/lib/libcrypto.dylib',
612 '$(SDKROOT)/usr/lib/libssl.dylib',
henrike@webrtc.org28e20752013-07-10 00:45:36613 ],
fischman@webrtc.orge3de6b12013-08-26 19:31:21614 },
615 'all_dependent_settings': {
616 'link_settings': {
617 'xcode_settings': {
618 'OTHER_LDFLAGS': [
619 '-framework Cocoa',
620 '-framework Foundation',
621 '-framework IOKit',
622 '-framework Security',
623 '-framework SystemConfiguration',
624 ],
625 },
henrike@webrtc.org28e20752013-07-10 00:45:36626 },
627 },
fischman@webrtc.orge3de6b12013-08-26 19:31:21628 'conditions': [
629 ['target_arch=="ia32"', {
630 'all_dependent_settings': {
631 'link_settings': {
632 'xcode_settings': {
633 'OTHER_LDFLAGS': [
634 '-framework Carbon',
635 ],
636 },
637 },
638 },
639 }],
640 ],
henrike@webrtc.org28e20752013-07-10 00:45:36641 }],
642 ['OS=="ios"', {
henrike@webrtc.org28e20752013-07-10 00:45:36643 'sources': [
644 'base/scoped_autorelease_pool.mm',
645 ],
fischman@webrtc.org1bc19542013-08-01 18:29:45646 'dependencies': [
647 '../net/third_party/nss/ssl.gyp:libssl',
648 ],
fischman@webrtc.orge3de6b12013-08-26 19:31:21649 'all_dependent_settings': {
650 'xcode_settings': {
651 'OTHER_LDFLAGS': [
652 '-framework Foundation',
653 '-framework IOKit',
654 '-framework Security',
655 '-framework SystemConfiguration',
656 '-framework UIKit',
657 ],
658 },
henrike@webrtc.org28e20752013-07-10 00:45:36659 },
henrike@webrtc.org28e20752013-07-10 00:45:36660 }],
661 ['OS=="win"', {
662 'sources': [
663 'base/diskcache_win32.cc',
664 'base/diskcache_win32.h',
665 'base/schanneladapter.cc',
666 'base/schanneladapter.h',
667 'base/win32.cc',
668 'base/win32.h',
669 'base/win32filesystem.cc',
670 'base/win32filesystem.h',
671 'base/win32regkey.cc',
672 'base/win32regkey.h',
673 'base/win32securityerrors.cc',
674 'base/win32socketinit.cc',
675 'base/win32socketinit.h',
676 'base/win32socketserver.cc',
677 'base/win32socketserver.h',
678 'base/win32window.cc',
679 'base/win32window.h',
680 'base/win32windowpicker.cc',
681 'base/win32windowpicker.h',
682 'base/winfirewall.cc',
683 'base/winfirewall.h',
684 'base/winping.cc',
685 'base/winping.h',
686 ],
henrike@webrtc.org28654cb2013-07-22 21:07:49687 'link_settings': {
688 'libraries': [
689 '-lcrypt32.lib',
690 '-liphlpapi.lib',
691 '-lsecur32.lib',
692 ],
693 },
henrike@webrtc.org28e20752013-07-10 00:45:36694 # Suppress warnings about WIN32_LEAN_AND_MEAN.
695 'msvs_disabled_warnings': [4005],
henrike@webrtc.org28e20752013-07-10 00:45:36696 }],
697 ['os_posix==1', {
698 'sources': [
699 'base/latebindingsymboltable.cc',
700 'base/latebindingsymboltable.h',
701 'base/posix.cc',
702 'base/posix.h',
703 'base/unixfilesystem.cc',
704 'base/unixfilesystem.h',
705 ],
706 'conditions': [
707 ['OS=="linux" or OS=="android"', {
708 'dependencies': [
709 '<(DEPTH)/third_party/openssl/openssl.gyp:openssl',
710 ],
711 }],
712 ['OS!="ios"', {
713 'sources': [
714 'base/openssladapter.cc',
715 'base/openssladapter.h',
716 'base/openssldigest.cc',
717 'base/openssldigest.h',
718 'base/opensslidentity.cc',
719 'base/opensslidentity.h',
720 'base/opensslstreamadapter.cc',
721 'base/opensslstreamadapter.h',
722 ],
723 }],
724 ],
725 }],
726 ], # conditions
727 }, # target libjingle
728 {
729 'target_name': 'libjingle_sound',
730 'type': 'static_library',
731 'dependencies': [
732 'libjingle',
733 ],
734 'sources': [
735 'sound/automaticallychosensoundsystem.h',
736 'sound/nullsoundsystem.cc',
737 'sound/nullsoundsystem.h',
738 'sound/nullsoundsystemfactory.cc',
739 'sound/nullsoundsystemfactory.h',
740 'sound/platformsoundsystem.cc',
741 'sound/platformsoundsystem.h',
742 'sound/platformsoundsystemfactory.cc',
743 'sound/platformsoundsystemfactory.h',
744 'sound/sounddevicelocator.h',
745 'sound/soundinputstreaminterface.h',
746 'sound/soundoutputstreaminterface.h',
747 'sound/soundsystemfactory.h',
748 'sound/soundsysteminterface.cc',
749 'sound/soundsysteminterface.h',
750 'sound/soundsystemproxy.cc',
751 'sound/soundsystemproxy.h',
752 ],
753 'conditions': [
754 ['OS=="linux"', {
755 'sources': [
756 'sound/alsasoundsystem.cc',
757 'sound/alsasoundsystem.h',
758 'sound/alsasymboltable.cc',
759 'sound/alsasymboltable.h',
760 'sound/linuxsoundsystem.cc',
761 'sound/linuxsoundsystem.h',
762 'sound/pulseaudiosoundsystem.cc',
763 'sound/pulseaudiosoundsystem.h',
764 'sound/pulseaudiosymboltable.cc',
765 'sound/pulseaudiosymboltable.h',
766 ],
767 }],
768 ],
769 }, # target libjingle_sound
770 {
771 'target_name': 'libjingle_media',
772 'type': 'static_library',
773 'dependencies': [
774 '<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv',
henrike@webrtc.org9de257d2013-07-17 14:42:53775 '<(webrtc_root)/modules/modules.gyp:video_capture_module',
776 '<(webrtc_root)/modules/modules.gyp:video_render_module',
777 '<(webrtc_root)/video_engine/video_engine.gyp:video_engine_core',
778 '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine',
779 '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers',
henrike@webrtc.org28e20752013-07-10 00:45:36780 'libjingle',
781 'libjingle_sound',
782 ],
783 'direct_dependent_settings': {
784 'include_dirs': [
785 '<(DEPTH)/third_party/libyuv/include',
786 ],
787 },
788 'sources': [
789 'media/base/audioframe.h',
790 'media/base/audiorenderer.h',
791 'media/base/capturemanager.cc',
792 'media/base/capturemanager.h',
793 'media/base/capturerenderadapter.cc',
794 'media/base/capturerenderadapter.h',
795 'media/base/codec.cc',
796 'media/base/codec.h',
797 'media/base/constants.cc',
798 'media/base/constants.h',
799 'media/base/cpuid.cc',
800 'media/base/cpuid.h',
801 'media/base/cryptoparams.h',
802 'media/base/filemediaengine.cc',
803 'media/base/filemediaengine.h',
804 'media/base/hybriddataengine.h',
805 'media/base/hybridvideoengine.cc',
806 'media/base/hybridvideoengine.h',
807 'media/base/mediachannel.h',
808 'media/base/mediacommon.h',
809 'media/base/mediaengine.cc',
810 'media/base/mediaengine.h',
811 'media/base/mutedvideocapturer.cc',
812 'media/base/mutedvideocapturer.h',
813 'media/base/rtpdataengine.cc',
814 'media/base/rtpdataengine.h',
815 'media/base/rtpdump.cc',
816 'media/base/rtpdump.h',
817 'media/base/rtputils.cc',
818 'media/base/rtputils.h',
819 'media/base/screencastid.h',
820 'media/base/streamparams.cc',
821 'media/base/streamparams.h',
822 'media/base/videoadapter.cc',
823 'media/base/videoadapter.h',
824 'media/base/videocapturer.cc',
825 'media/base/videocapturer.h',
826 'media/base/videocommon.cc',
827 'media/base/videocommon.h',
828 'media/base/videoframe.cc',
829 'media/base/videoframe.h',
830 'media/base/videoprocessor.h',
831 'media/base/videorenderer.h',
832 'media/base/voiceprocessor.h',
833 'media/devices/deviceinfo.h',
834 'media/devices/devicemanager.cc',
835 'media/devices/devicemanager.h',
836 'media/devices/dummydevicemanager.h',
837 'media/devices/filevideocapturer.cc',
838 'media/devices/filevideocapturer.h',
839 'media/devices/videorendererfactory.h',
840 'media/other/linphonemediaengine.h',
841 # TODO(ronghuawu): Enable when SCTP is ready.
842 # 'media/sctp/sctpdataengine.cc',
843 # 'media/sctp/sctpdataengine.h',
844 'media/webrtc/webrtccommon.h',
845 'media/webrtc/webrtcexport.h',
846 'media/webrtc/webrtcmediaengine.h',
847 'media/webrtc/webrtcpassthroughrender.cc',
848 'media/webrtc/webrtcpassthroughrender.h',
wu@webrtc.org9dba5252013-08-05 20:36:57849 'media/webrtc/webrtctexturevideoframe.cc',
850 'media/webrtc/webrtctexturevideoframe.h',
henrike@webrtc.org28e20752013-07-10 00:45:36851 'media/webrtc/webrtcvideocapturer.cc',
852 'media/webrtc/webrtcvideocapturer.h',
853 'media/webrtc/webrtcvideodecoderfactory.h',
854 'media/webrtc/webrtcvideoencoderfactory.h',
855 'media/webrtc/webrtcvideoengine.cc',
856 'media/webrtc/webrtcvideoengine.h',
857 'media/webrtc/webrtcvideoframe.cc',
858 'media/webrtc/webrtcvideoframe.h',
859 'media/webrtc/webrtcvie.h',
860 'media/webrtc/webrtcvoe.h',
861 'media/webrtc/webrtcvoiceengine.cc',
862 'media/webrtc/webrtcvoiceengine.h',
863 ],
864 'conditions': [
865 ['OS=="linux"', {
866 'sources': [
867 'media/devices/gtkvideorenderer.cc',
868 'media/devices/gtkvideorenderer.h',
869 'media/devices/libudevsymboltable.cc',
870 'media/devices/libudevsymboltable.h',
871 'media/devices/linuxdeviceinfo.cc',
872 'media/devices/linuxdevicemanager.cc',
873 'media/devices/linuxdevicemanager.h',
874 'media/devices/v4llookup.cc',
875 'media/devices/v4llookup.h',
876 ],
877 'include_dirs': [
878 'third_party/libudev'
879 ],
880 'cflags': [
881 '<!@(pkg-config --cflags gobject-2.0 gthread-2.0 gtk+-2.0)',
882 ],
883 'libraries': [
884 '-lrt',
885 '-lXext',
886 '-lX11',
887 ],
888 }],
889 ['OS=="win"', {
890 'sources': [
891 'media/devices/gdivideorenderer.cc',
892 'media/devices/gdivideorenderer.h',
893 'media/devices/win32deviceinfo.cc',
894 'media/devices/win32devicemanager.cc',
895 'media/devices/win32devicemanager.h',
896 ],
897 'msvs_settings': {
898 'VCLibrarianTool': {
899 'AdditionalDependencies': [
900 'd3d9.lib',
901 'gdi32.lib',
902 'strmiids.lib',
903 'winmm.lib',
904 ],
905 },
906 },
907 }],
908 ['OS=="mac"', {
909 'sources': [
910 'media/devices/macdeviceinfo.cc',
911 'media/devices/macdevicemanager.cc',
912 'media/devices/macdevicemanager.h',
913 'media/devices/macdevicemanagermm.mm',
914 ],
915 'conditions': [
fischman@webrtc.orge3de6b12013-08-26 19:31:21916 ['target_arch=="ia32"', {
henrike@webrtc.org28e20752013-07-10 00:45:36917 'sources': [
918 'media/devices/carbonvideorenderer.cc',
919 'media/devices/carbonvideorenderer.h',
920 ],
fischman@webrtc.orge3de6b12013-08-26 19:31:21921 'link_settings': {
922 'xcode_settings': {
923 'OTHER_LDFLAGS': [
924 '-framework Carbon',
925 ],
926 },
927 },
henrike@webrtc.org28e20752013-07-10 00:45:36928 }],
929 ],
930 'xcode_settings': {
931 'WARNING_CFLAGS': [
932 # TODO(ronghuawu): Update macdevicemanager.cc to stop using
933 # deprecated functions and remove this flag.
934 '-Wno-deprecated-declarations',
935 ],
936 },
937 'link_settings': {
938 'xcode_settings': {
939 'OTHER_LDFLAGS': [
940 '-framework Cocoa',
941 '-framework CoreAudio',
942 '-framework CoreVideo',
943 '-framework OpenGL',
944 '-framework QTKit',
945 ],
946 },
947 },
948 }],
949 ['OS=="ios"', {
950 'sources': [
951 'media/devices/iosdeviceinfo.cc',
952 'media/devices/mobiledevicemanager.cc',
953 ],
954 'include_dirs': [
955 # TODO(sjlee) Remove when vp8 is building for iOS. vp8 pulls in
956 # libjpeg which pulls in libyuv which currently disabled.
957 '../third_party/libyuv/include',
958 ],
959 }],
960 ['OS=="android"', {
961 'sources': [
962 'media/devices/mobiledevicemanager.cc',
963 ],
964 }],
965 ],
966 }, # target libjingle_media
967 {
968 'target_name': 'libjingle_p2p',
969 'type': 'static_library',
970 'dependencies': [
971 '<(DEPTH)/third_party/libsrtp/libsrtp.gyp:libsrtp',
972 'libjingle',
973 'libjingle_media',
974 ],
975 'include_dirs': [
henrike@webrtc.org723d6832013-07-12 16:04:50976 '<(DEPTH)/testing/gtest/include',
henrike@webrtc.org28e20752013-07-10 00:45:36977 ],
978 'direct_dependent_settings': {
979 'include_dirs': [
henrike@webrtc.org723d6832013-07-12 16:04:50980 '<(DEPTH)/testing/gtest/include',
henrike@webrtc.org28e20752013-07-10 00:45:36981 ],
982 },
983 'defines': [
984 # TODO(ronghuawu): enable SCTP when it's ready.
985 # 'HAVE_SCTP',
986 ],
987 'sources': [
988 'p2p/base/asyncstuntcpsocket.cc',
989 'p2p/base/asyncstuntcpsocket.h',
990 'p2p/base/basicpacketsocketfactory.cc',
991 'p2p/base/basicpacketsocketfactory.h',
992 'p2p/base/candidate.h',
993 'p2p/base/common.h',
994 'p2p/base/constants.cc',
995 'p2p/base/constants.h',
996 'p2p/base/dtlstransportchannel.cc',
997 'p2p/base/dtlstransportchannel.h',
998 'p2p/base/p2ptransport.cc',
999 'p2p/base/p2ptransport.h',
1000 'p2p/base/p2ptransportchannel.cc',
1001 'p2p/base/p2ptransportchannel.h',
1002 'p2p/base/packetsocketfactory.h',
1003 'p2p/base/parsing.cc',
1004 'p2p/base/parsing.h',
1005 'p2p/base/port.cc',
1006 'p2p/base/port.h',
1007 'p2p/base/portallocator.cc',
1008 'p2p/base/portallocator.h',
1009 'p2p/base/portallocatorsessionproxy.cc',
1010 'p2p/base/portallocatorsessionproxy.h',
1011 'p2p/base/portinterface.h',
1012 'p2p/base/portproxy.cc',
1013 'p2p/base/portproxy.h',
1014 'p2p/base/pseudotcp.cc',
1015 'p2p/base/pseudotcp.h',
1016 'p2p/base/rawtransport.cc',
1017 'p2p/base/rawtransport.h',
1018 'p2p/base/rawtransportchannel.cc',
1019 'p2p/base/rawtransportchannel.h',
1020 'p2p/base/relayport.cc',
1021 'p2p/base/relayport.h',
1022 'p2p/base/relayserver.cc',
1023 'p2p/base/relayserver.h',
1024 'p2p/base/session.cc',
1025 'p2p/base/session.h',
1026 'p2p/base/sessionclient.h',
1027 'p2p/base/sessiondescription.cc',
1028 'p2p/base/sessiondescription.h',
1029 'p2p/base/sessionid.h',
1030 'p2p/base/sessionmanager.cc',
1031 'p2p/base/sessionmanager.h',
1032 'p2p/base/sessionmessages.cc',
1033 'p2p/base/sessionmessages.h',
1034 'p2p/base/stun.cc',
1035 'p2p/base/stun.h',
1036 'p2p/base/stunport.cc',
1037 'p2p/base/stunport.h',
1038 'p2p/base/stunrequest.cc',
1039 'p2p/base/stunrequest.h',
1040 'p2p/base/stunserver.cc',
1041 'p2p/base/stunserver.h',
1042 'p2p/base/tcpport.cc',
1043 'p2p/base/tcpport.h',
1044 'p2p/base/transport.cc',
1045 'p2p/base/transport.h',
1046 'p2p/base/transportchannel.cc',
1047 'p2p/base/transportchannel.h',
1048 'p2p/base/transportchannelimpl.h',
1049 'p2p/base/transportchannelproxy.cc',
1050 'p2p/base/transportchannelproxy.h',
sergeyu@chromium.org492e3152013-08-24 00:06:431051 'p2p/base/transportdescription.cc',
henrike@webrtc.org28e20752013-07-10 00:45:361052 'p2p/base/transportdescription.h',
1053 'p2p/base/transportdescriptionfactory.cc',
1054 'p2p/base/transportdescriptionfactory.h',
1055 'p2p/base/transportinfo.h',
1056 'p2p/base/turnport.cc',
1057 'p2p/base/turnport.h',
1058 'p2p/base/turnserver.cc',
1059 'p2p/base/turnserver.h',
1060 'p2p/base/udpport.h',
1061 'p2p/client/autoportallocator.h',
1062 'p2p/client/basicportallocator.cc',
1063 'p2p/client/basicportallocator.h',
1064 'p2p/client/connectivitychecker.cc',
1065 'p2p/client/connectivitychecker.h',
1066 'p2p/client/httpportallocator.cc',
1067 'p2p/client/httpportallocator.h',
1068 'p2p/client/sessionmanagertask.h',
1069 'p2p/client/sessionsendtask.h',
1070 'p2p/client/socketmonitor.cc',
1071 'p2p/client/socketmonitor.h',
1072 'session/tunnel/pseudotcpchannel.cc',
1073 'session/tunnel/pseudotcpchannel.h',
1074 'session/tunnel/tunnelsessionclient.cc',
1075 'session/tunnel/tunnelsessionclient.h',
1076 'session/tunnel/securetunnelsessionclient.cc',
1077 'session/tunnel/securetunnelsessionclient.h',
1078 'session/media/audiomonitor.cc',
1079 'session/media/audiomonitor.h',
1080 'session/media/call.cc',
1081 'session/media/call.h',
1082 'session/media/channel.cc',
1083 'session/media/channel.h',
1084 'session/media/channelmanager.cc',
1085 'session/media/channelmanager.h',
1086 'session/media/currentspeakermonitor.cc',
1087 'session/media/currentspeakermonitor.h',
1088 'session/media/mediamessages.cc',
1089 'session/media/mediamessages.h',
1090 'session/media/mediamonitor.cc',
1091 'session/media/mediamonitor.h',
1092 'session/media/mediarecorder.cc',
1093 'session/media/mediarecorder.h',
1094 'session/media/mediasession.cc',
1095 'session/media/mediasession.h',
1096 'session/media/mediasessionclient.cc',
1097 'session/media/mediasessionclient.h',
1098 'session/media/mediasink.h',
1099 'session/media/rtcpmuxfilter.cc',
1100 'session/media/rtcpmuxfilter.h',
1101 'session/media/soundclip.cc',
1102 'session/media/soundclip.h',
1103 'session/media/srtpfilter.cc',
1104 'session/media/srtpfilter.h',
1105 'session/media/ssrcmuxfilter.cc',
1106 'session/media/ssrcmuxfilter.h',
1107 'session/media/typingmonitor.cc',
1108 'session/media/typingmonitor.h',
1109 'session/media/voicechannel.h',
1110 ],
1111 }, # target libjingle_p2p
1112 {
1113 'target_name': 'libjingle_peerconnection',
1114 'type': 'static_library',
1115 'dependencies': [
1116 'libjingle',
1117 'libjingle_media',
1118 'libjingle_p2p',
1119 ],
1120 'sources': [
1121 'app/webrtc/audiotrack.cc',
1122 'app/webrtc/audiotrack.h',
1123 'app/webrtc/audiotrackrenderer.cc',
1124 'app/webrtc/audiotrackrenderer.h',
1125 'app/webrtc/datachannel.cc',
1126 'app/webrtc/datachannel.h',
1127 'app/webrtc/datachannelinterface.h',
1128 'app/webrtc/dtmfsender.cc',
1129 'app/webrtc/dtmfsender.h',
1130 'app/webrtc/dtmfsenderinterface.h',
1131 'app/webrtc/fakeportallocatorfactory.h',
1132 'app/webrtc/jsep.h',
1133 'app/webrtc/jsepicecandidate.cc',
1134 'app/webrtc/jsepicecandidate.h',
1135 'app/webrtc/jsepsessiondescription.cc',
1136 'app/webrtc/jsepsessiondescription.h',
1137 'app/webrtc/localaudiosource.cc',
1138 'app/webrtc/localaudiosource.h',
1139 'app/webrtc/localvideosource.cc',
1140 'app/webrtc/localvideosource.h',
1141 'app/webrtc/mediaconstraintsinterface.cc',
1142 'app/webrtc/mediaconstraintsinterface.h',
1143 'app/webrtc/mediastream.cc',
1144 'app/webrtc/mediastream.h',
1145 'app/webrtc/mediastreamhandler.cc',
1146 'app/webrtc/mediastreamhandler.h',
1147 'app/webrtc/mediastreaminterface.h',
1148 'app/webrtc/mediastreamprovider.h',
1149 'app/webrtc/mediastreamproxy.h',
1150 'app/webrtc/mediastreamsignaling.cc',
1151 'app/webrtc/mediastreamsignaling.h',
1152 'app/webrtc/mediastreamtrack.h',
1153 'app/webrtc/mediastreamtrackproxy.h',
1154 'app/webrtc/notifier.h',
1155 'app/webrtc/peerconnection.cc',
1156 'app/webrtc/peerconnection.h',
1157 'app/webrtc/peerconnectionfactory.cc',
1158 'app/webrtc/peerconnectionfactory.h',
1159 'app/webrtc/peerconnectioninterface.h',
1160 'app/webrtc/peerconnectionproxy.h',
1161 'app/webrtc/portallocatorfactory.cc',
1162 'app/webrtc/portallocatorfactory.h',
1163 'app/webrtc/proxy.h',
1164 'app/webrtc/statscollector.cc',
1165 'app/webrtc/statscollector.h',
1166 'app/webrtc/statstypes.h',
1167 'app/webrtc/streamcollection.h',
1168 'app/webrtc/videosourceinterface.h',
1169 'app/webrtc/videosourceproxy.h',
1170 'app/webrtc/videotrack.cc',
1171 'app/webrtc/videotrack.h',
1172 'app/webrtc/videotrackrenderers.cc',
1173 'app/webrtc/videotrackrenderers.h',
1174 'app/webrtc/webrtcsdp.cc',
1175 'app/webrtc/webrtcsdp.h',
1176 'app/webrtc/webrtcsession.cc',
1177 'app/webrtc/webrtcsession.h',
wu@webrtc.org91053e72013-08-10 07:18:041178 'app/webrtc/webrtcsessiondescriptionfactory.cc',
1179 'app/webrtc/webrtcsessiondescriptionfactory.h',
henrike@webrtc.org28e20752013-07-10 00:45:361180 ],
1181 }, # target libjingle_peerconnection
1182 ],
1183}