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

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/public/blink.gyp:blink', 10 '../third_party/WebKit/public/blink.gyp:blink',
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 }], 392 }],
393 ['enable_webrtc==1', { 393 ['enable_webrtc==1', {
394 'dependencies': [ 394 'dependencies': [
395 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc', 395 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc',
396 '../third_party/libjingle/libjingle.gyp:libpeerconnection', 396 '../third_party/libjingle/libjingle.gyp:libpeerconnection',
397 '../third_party/webrtc/modules/modules.gyp:audio_device', 397 '../third_party/webrtc/modules/modules.gyp:audio_device',
398 '<(DEPTH)/crypto/crypto.gyp:crypto', 398 '<(DEPTH)/crypto/crypto.gyp:crypto',
399 ], 399 ],
400 'sources': [ 400 'sources': [
401 'public/renderer/webrtc_log_message_delegate.h', 401 'public/renderer/webrtc_log_message_delegate.h',
402 'renderer/media/dtls_identity_service.cc',
403 'renderer/media/dtls_identity_service.h',
402 'renderer/media/media_stream_center.cc', 404 'renderer/media/media_stream_center.cc',
403 'renderer/media/media_stream_dependency_factory.cc', 405 'renderer/media/media_stream_dependency_factory.cc',
404 'renderer/media/media_stream_dispatcher.cc', 406 'renderer/media/media_stream_dispatcher.cc',
405 'renderer/media/media_stream_impl.cc', 407 'renderer/media/media_stream_impl.cc',
406 'renderer/media/media_stream_registry_interface.h', 408 'renderer/media/media_stream_registry_interface.h',
407 'renderer/media/media_stream_source_observer.cc', 409 'renderer/media/media_stream_source_observer.cc',
408 'renderer/media/media_stream_source_observer.h', 410 'renderer/media/media_stream_source_observer.h',
409 'renderer/media/peer_connection_handler_base.cc', 411 'renderer/media/peer_connection_handler_base.cc',
410 'renderer/media/peer_connection_handler_base.h', 412 'renderer/media/peer_connection_handler_base.h',
411 'renderer/media/peer_connection_tracker.cc', 413 'renderer/media/peer_connection_tracker.cc',
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 }], 491 }],
490 ], 492 ],
491 'target_conditions': [ 493 'target_conditions': [
492 ['OS=="android"', { 494 ['OS=="android"', {
493 'sources/': [ 495 'sources/': [
494 ['include', '^renderer/render_view_linux\\.cc$'], 496 ['include', '^renderer/render_view_linux\\.cc$'],
495 ], 497 ],
496 }], 498 }],
497 ], 499 ],
498 } 500 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698