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

Side by Side Diff: content/content_renderer.gypi

Issue 12965010: Split the libpeerconnection target up in two parts. The new target, libjingle_webrtc contains all t… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'dependencies': [ 6 'dependencies': [
7 '../jingle/jingle.gyp:jingle_glue', 7 '../jingle/jingle.gyp:jingle_glue',
8 '../net/net.gyp:net', 8 '../net/net.gyp:net',
9 '../skia/skia.gyp:skia', 9 '../skia/skia.gyp:skia',
10 '../third_party/hyphen/hyphen.gyp:hyphen', 10 '../third_party/hyphen/hyphen.gyp:hyphen',
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 # TODO(jrg): remove the OS=="android" section? 334 # TODO(jrg): remove the OS=="android" section?
335 # http://crbug.com/113172 335 # http://crbug.com/113172
336 # Understand better how media_stream_ is tied into Chromium. 336 # Understand better how media_stream_ is tied into Chromium.
337 ['enable_webrtc==0 and OS=="android"', { 337 ['enable_webrtc==0 and OS=="android"', {
338 'sources/': [ 338 'sources/': [
339 ['exclude', '^renderer/media/media_stream_'], 339 ['exclude', '^renderer/media/media_stream_'],
340 ], 340 ],
341 }], 341 }],
342 ['enable_webrtc==1', { 342 ['enable_webrtc==1', {
343 'dependencies': [ 343 'dependencies': [
344 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc',
344 '../third_party/libjingle/libjingle.gyp:libpeerconnection', 345 '../third_party/libjingle/libjingle.gyp:libpeerconnection',
345 '../third_party/webrtc/modules/modules.gyp:audio_device', 346 '../third_party/webrtc/modules/modules.gyp:audio_device',
346 '<(DEPTH)/crypto/crypto.gyp:crypto', 347 '<(DEPTH)/crypto/crypto.gyp:crypto',
347 ], 348 ],
348 'sources': [ 349 'sources': [
349 'renderer/media/media_stream_center.cc', 350 'renderer/media/media_stream_center.cc',
350 'renderer/media/media_stream_dependency_factory.cc', 351 'renderer/media/media_stream_dependency_factory.cc',
351 'renderer/media/media_stream_dispatcher.cc', 352 'renderer/media/media_stream_dispatcher.cc',
352 'renderer/media/media_stream_impl.cc', 353 'renderer/media/media_stream_impl.cc',
353 'renderer/media/peer_connection_handler_base.cc', 354 'renderer/media/peer_connection_handler_base.cc',
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 }], 422 }],
422 ], 423 ],
423 'target_conditions': [ 424 'target_conditions': [
424 ['OS=="android"', { 425 ['OS=="android"', {
425 'sources/': [ 426 'sources/': [
426 ['include', '^renderer/render_view_linux\\.cc$'], 427 ['include', '^renderer/render_view_linux\\.cc$'],
427 ], 428 ],
428 }], 429 }],
429 ], 430 ],
430 } 431 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698