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

Side by Side Diff: content/content_renderer.gypi

Issue 15969025: Generates the DTLS identity in browser process and returns it to render process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 6 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
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/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', 10 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 ], 380 ],
381 }], 381 }],
382 ['enable_webrtc==1', { 382 ['enable_webrtc==1', {
383 'dependencies': [ 383 'dependencies': [
384 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc', 384 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc',
385 '../third_party/libjingle/libjingle.gyp:libpeerconnection', 385 '../third_party/libjingle/libjingle.gyp:libpeerconnection',
386 '../third_party/webrtc/modules/modules.gyp:audio_device', 386 '../third_party/webrtc/modules/modules.gyp:audio_device',
387 '<(DEPTH)/crypto/crypto.gyp:crypto', 387 '<(DEPTH)/crypto/crypto.gyp:crypto',
388 ], 388 ],
389 'sources': [ 389 'sources': [
390 'renderer/media/dtls_identity_service.cc',
391 'renderer/media/dtls_identity_service.h',
390 'renderer/media/media_stream_center.cc', 392 'renderer/media/media_stream_center.cc',
391 'renderer/media/media_stream_dependency_factory.cc', 393 'renderer/media/media_stream_dependency_factory.cc',
392 'renderer/media/media_stream_dispatcher.cc', 394 'renderer/media/media_stream_dispatcher.cc',
393 'renderer/media/media_stream_impl.cc', 395 'renderer/media/media_stream_impl.cc',
394 'renderer/media/media_stream_registry_interface.h', 396 'renderer/media/media_stream_registry_interface.h',
395 'renderer/media/media_stream_source_observer.cc', 397 'renderer/media/media_stream_source_observer.cc',
396 'renderer/media/media_stream_source_observer.h', 398 'renderer/media/media_stream_source_observer.h',
397 'renderer/media/peer_connection_handler_base.cc', 399 'renderer/media/peer_connection_handler_base.cc',
398 'renderer/media/peer_connection_handler_base.h', 400 'renderer/media/peer_connection_handler_base.h',
399 'renderer/media/peer_connection_tracker.cc', 401 'renderer/media/peer_connection_tracker.cc',
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
479 }], 481 }],
480 ], 482 ],
481 'target_conditions': [ 483 'target_conditions': [
482 ['OS=="android"', { 484 ['OS=="android"', {
483 'sources/': [ 485 'sources/': [
484 ['include', '^renderer/render_view_linux\\.cc$'], 486 ['include', '^renderer/render_view_linux\\.cc$'],
485 ], 487 ],
486 }], 488 }],
487 ], 489 ],
488 } 490 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698