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 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 ], | 316 ], |
317 'sources': [ | 317 'sources': [ |
318 'renderer/media/media_stream_center.cc', | 318 'renderer/media/media_stream_center.cc', |
319 'renderer/media/media_stream_dependency_factory.cc', | 319 'renderer/media/media_stream_dependency_factory.cc', |
320 'renderer/media/media_stream_dispatcher.cc', | 320 'renderer/media/media_stream_dispatcher.cc', |
321 'renderer/media/media_stream_impl.cc', | 321 'renderer/media/media_stream_impl.cc', |
322 'renderer/media/peer_connection_handler_base.cc', | 322 'renderer/media/peer_connection_handler_base.cc', |
323 'renderer/media/peer_connection_handler_base.h', | 323 'renderer/media/peer_connection_handler_base.h', |
324 'renderer/media/peer_connection_handler_jsep.cc', | 324 'renderer/media/peer_connection_handler_jsep.cc', |
325 'renderer/media/peer_connection_handler_jsep.h', | 325 'renderer/media/peer_connection_handler_jsep.h', |
| 326 'renderer/media/rtc_peer_connection_handler.cc', |
| 327 'renderer/media/rtc_peer_connection_handler.h', |
326 'renderer/media/rtc_video_capture_delegate.cc', | 328 'renderer/media/rtc_video_capture_delegate.cc', |
327 'renderer/media/rtc_video_capture_delegate.h', | 329 'renderer/media/rtc_video_capture_delegate.h', |
328 'renderer/media/rtc_video_capturer.cc', | 330 'renderer/media/rtc_video_capturer.cc', |
329 'renderer/media/rtc_video_capturer.h', | 331 'renderer/media/rtc_video_capturer.h', |
330 'renderer/media/webrtc_audio_device_impl.cc', | 332 'renderer/media/webrtc_audio_device_impl.cc', |
331 'renderer/media/webrtc_audio_device_impl.h', | 333 'renderer/media/webrtc_audio_device_impl.h', |
332 'renderer/p2p/host_address_request.cc', | 334 'renderer/p2p/host_address_request.cc', |
333 'renderer/p2p/host_address_request.h', | 335 'renderer/p2p/host_address_request.h', |
334 'renderer/p2p/ipc_network_manager.cc', | 336 'renderer/p2p/ipc_network_manager.cc', |
335 'renderer/p2p/ipc_network_manager.h', | 337 'renderer/p2p/ipc_network_manager.h', |
(...skipping 21 matching lines...) Expand all Loading... |
357 }], | 359 }], |
358 ], | 360 ], |
359 'target_conditions': [ | 361 'target_conditions': [ |
360 ['OS=="android"', { | 362 ['OS=="android"', { |
361 'sources/': [ | 363 'sources/': [ |
362 ['include', '^renderer/render_view_linux\\.cc$'], | 364 ['include', '^renderer/render_view_linux\\.cc$'], |
363 ], | 365 ], |
364 }], | 366 }], |
365 ], | 367 ], |
366 } | 368 } |
OLD | NEW |