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 '../ppapi/ppapi_internal.gyp:ppapi_host', | 9 '../ppapi/ppapi_internal.gyp:ppapi_host', |
10 '../ppapi/ppapi_internal.gyp:ppapi_proxy', | 10 '../ppapi/ppapi_internal.gyp:ppapi_proxy', |
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
303 '../third_party/webrtc/modules/modules.gyp:video_capture_module', | 303 '../third_party/webrtc/modules/modules.gyp:video_capture_module', |
304 '../third_party/webrtc/system_wrappers/source/system_wrappers.gyp:system
_wrappers', | 304 '../third_party/webrtc/system_wrappers/source/system_wrappers.gyp:system
_wrappers', |
305 '../third_party/webrtc/video_engine/video_engine.gyp:video_engine_core', | 305 '../third_party/webrtc/video_engine/video_engine.gyp:video_engine_core', |
306 '../third_party/webrtc/voice_engine/voice_engine.gyp:voice_engine_core', | 306 '../third_party/webrtc/voice_engine/voice_engine.gyp:voice_engine_core', |
307 ], | 307 ], |
308 'sources': [ | 308 'sources': [ |
309 'renderer/media/media_stream_center.cc', | 309 'renderer/media/media_stream_center.cc', |
310 'renderer/media/media_stream_dependency_factory.cc', | 310 'renderer/media/media_stream_dependency_factory.cc', |
311 'renderer/media/media_stream_dispatcher.cc', | 311 'renderer/media/media_stream_dispatcher.cc', |
312 'renderer/media/media_stream_impl.cc', | 312 'renderer/media/media_stream_impl.cc', |
313 'renderer/media/peer_connection_handler.cc', | |
314 'renderer/media/peer_connection_handler.h', | |
315 'renderer/media/peer_connection_handler_base.cc', | 313 'renderer/media/peer_connection_handler_base.cc', |
316 'renderer/media/peer_connection_handler_base.h', | 314 'renderer/media/peer_connection_handler_base.h', |
317 'renderer/media/peer_connection_handler_jsep.cc', | 315 'renderer/media/peer_connection_handler_jsep.cc', |
318 'renderer/media/peer_connection_handler_jsep.h', | 316 'renderer/media/peer_connection_handler_jsep.h', |
319 'renderer/media/video_capture_module_impl.cc', | 317 'renderer/media/video_capture_module_impl.cc', |
320 'renderer/media/video_capture_module_impl.h', | 318 'renderer/media/video_capture_module_impl.h', |
321 'renderer/media/webrtc_audio_device_impl.cc', | 319 'renderer/media/webrtc_audio_device_impl.cc', |
322 'renderer/media/webrtc_audio_device_impl.h', | 320 'renderer/media/webrtc_audio_device_impl.h', |
323 'renderer/p2p/host_address_request.cc', | 321 'renderer/p2p/host_address_request.cc', |
324 'renderer/p2p/host_address_request.h', | 322 'renderer/p2p/host_address_request.h', |
(...skipping 25 matching lines...) Expand all Loading... |
350 }], | 348 }], |
351 ], | 349 ], |
352 'target_conditions': [ | 350 'target_conditions': [ |
353 ['OS=="android"', { | 351 ['OS=="android"', { |
354 'sources/': [ | 352 'sources/': [ |
355 ['include', '^renderer/render_view_linux\\.cc$'], | 353 ['include', '^renderer/render_view_linux\\.cc$'], |
356 ], | 354 ], |
357 }], | 355 }], |
358 ], | 356 ], |
359 } | 357 } |
OLD | NEW |