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