| OLD | NEW |
| 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/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', | 10 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 }], | 377 }], |
| 378 ['enable_webrtc==1', { | 378 ['enable_webrtc==1', { |
| 379 'dependencies': [ | 379 'dependencies': [ |
| 380 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc', | 380 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc', |
| 381 '../third_party/libjingle/libjingle.gyp:libpeerconnection', | 381 '../third_party/libjingle/libjingle.gyp:libpeerconnection', |
| 382 '../third_party/webrtc/modules/modules.gyp:audio_device', | 382 '../third_party/webrtc/modules/modules.gyp:audio_device', |
| 383 '<(DEPTH)/crypto/crypto.gyp:crypto', | 383 '<(DEPTH)/crypto/crypto.gyp:crypto', |
| 384 ], | 384 ], |
| 385 'sources': [ | 385 'sources': [ |
| 386 'public/renderer/webrtc_log_message_delegate.h', | 386 'public/renderer/webrtc_log_message_delegate.h', |
| 387 'renderer/media/dtls_identity_service.cc', |
| 388 'renderer/media/dtls_identity_service.h', |
| 387 'renderer/media/media_stream_center.cc', | 389 'renderer/media/media_stream_center.cc', |
| 388 'renderer/media/media_stream_dependency_factory.cc', | 390 'renderer/media/media_stream_dependency_factory.cc', |
| 389 'renderer/media/media_stream_dispatcher.cc', | 391 'renderer/media/media_stream_dispatcher.cc', |
| 390 'renderer/media/media_stream_impl.cc', | 392 'renderer/media/media_stream_impl.cc', |
| 391 'renderer/media/media_stream_registry_interface.h', | 393 'renderer/media/media_stream_registry_interface.h', |
| 392 'renderer/media/media_stream_source_observer.cc', | 394 'renderer/media/media_stream_source_observer.cc', |
| 393 'renderer/media/media_stream_source_observer.h', | 395 'renderer/media/media_stream_source_observer.h', |
| 394 'renderer/media/peer_connection_handler_base.cc', | 396 'renderer/media/peer_connection_handler_base.cc', |
| 395 'renderer/media/peer_connection_handler_base.h', | 397 'renderer/media/peer_connection_handler_base.h', |
| 396 'renderer/media/peer_connection_tracker.cc', | 398 'renderer/media/peer_connection_tracker.cc', |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 486 }], | 488 }], |
| 487 ], | 489 ], |
| 488 'target_conditions': [ | 490 'target_conditions': [ |
| 489 ['OS=="android"', { | 491 ['OS=="android"', { |
| 490 'sources/': [ | 492 'sources/': [ |
| 491 ['include', '^renderer/render_view_linux\\.cc$'], | 493 ['include', '^renderer/render_view_linux\\.cc$'], |
| 492 ], | 494 ], |
| 493 }], | 495 }], |
| 494 ], | 496 ], |
| 495 } | 497 } |
| OLD | NEW |