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

Side by Side Diff: content/content_renderer.gypi

Issue 9309078: Adding a skeleton MediaStreamCenter. (Closed)
Patch Set: Created 8 years, 10 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 '../ppapi/ppapi_internal.gyp:ppapi_proxy', 9 '../ppapi/ppapi_internal.gyp:ppapi_proxy',
10 '../ppapi/ppapi_internal.gyp:ppapi_shared', 10 '../ppapi/ppapi_internal.gyp:ppapi_shared',
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 }], 268 }],
269 ['enable_webrtc==1', { 269 ['enable_webrtc==1', {
270 'dependencies': [ 270 'dependencies': [
271 '../third_party/libjingle/libjingle.gyp:libjingle_peerconnection', 271 '../third_party/libjingle/libjingle.gyp:libjingle_peerconnection',
272 '../third_party/webrtc/modules/modules.gyp:video_capture_module', 272 '../third_party/webrtc/modules/modules.gyp:video_capture_module',
273 '../third_party/webrtc/system_wrappers/source/system_wrappers.gyp:system _wrappers', 273 '../third_party/webrtc/system_wrappers/source/system_wrappers.gyp:system _wrappers',
274 '../third_party/webrtc/video_engine/video_engine.gyp:video_engine_core', 274 '../third_party/webrtc/video_engine/video_engine.gyp:video_engine_core',
275 '../third_party/webrtc/voice_engine/voice_engine.gyp:voice_engine_core', 275 '../third_party/webrtc/voice_engine/voice_engine.gyp:voice_engine_core',
276 ], 276 ],
277 'sources': [ 277 'sources': [
278 'renderer/media/media_stream_center.cc',
279 'renderer/media/media_stream_center.h',
278 'renderer/media/media_stream_dependency_factory.cc', 280 'renderer/media/media_stream_dependency_factory.cc',
279 'renderer/media/media_stream_impl.cc', 281 'renderer/media/media_stream_impl.cc',
280 'renderer/media/peer_connection_handler.cc', 282 'renderer/media/peer_connection_handler.cc',
281 'renderer/media/peer_connection_handler.h', 283 'renderer/media/peer_connection_handler.h',
282 'renderer/media/video_capture_module_impl.cc', 284 'renderer/media/video_capture_module_impl.cc',
283 'renderer/media/video_capture_module_impl.h', 285 'renderer/media/video_capture_module_impl.h',
284 'renderer/media/webrtc_audio_device_impl.cc', 286 'renderer/media/webrtc_audio_device_impl.cc',
285 'renderer/media/webrtc_audio_device_impl.h', 287 'renderer/media/webrtc_audio_device_impl.h',
286 ], 288 ],
287 }, { 289 }, {
288 'sources': [ 290 'sources': [
289 'renderer/media/media_stream_dependency_factory_stub.cc', 291 'renderer/media/media_stream_dependency_factory_stub.cc',
290 'renderer/media/media_stream_impl_stub.cc', 292 'renderer/media/media_stream_impl_stub.cc',
291 ], 293 ],
292 }], 294 }],
293 ['java_bridge==1', { 295 ['java_bridge==1', {
294 'defines': [ 296 'defines': [
295 'ENABLE_JAVA_BRIDGE', 297 'ENABLE_JAVA_BRIDGE',
296 ], 298 ],
297 }, { 299 }, {
298 'sources!': [ 300 'sources!': [
299 'renderer/java/java_bridge_channel.cc', 301 'renderer/java/java_bridge_channel.cc',
300 'renderer/java/java_bridge_channel.h', 302 'renderer/java/java_bridge_channel.h',
301 'renderer/java/java_bridge_dispatcher.cc', 303 'renderer/java/java_bridge_dispatcher.cc',
302 'renderer/java/java_bridge_dispatcher.h', 304 'renderer/java/java_bridge_dispatcher.h',
303 ], 305 ],
304 }], 306 }],
305 ], 307 ],
306 } 308 }
OLDNEW
« no previous file with comments | « no previous file | content/renderer/media/media_stream_center.h » ('j') | content/renderer/media/media_stream_center.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698