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 '../skia/skia.gyp:skia', | 9 '../skia/skia.gyp:skia', |
10 '../third_party/hyphen/hyphen.gyp:hyphen', | 10 '../third_party/hyphen/hyphen.gyp:hyphen', |
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
405 'renderer/p2p/ipc_socket_factory.cc', | 405 'renderer/p2p/ipc_socket_factory.cc', |
406 'renderer/p2p/ipc_socket_factory.h', | 406 'renderer/p2p/ipc_socket_factory.h', |
407 'renderer/p2p/port_allocator.cc', | 407 'renderer/p2p/port_allocator.cc', |
408 'renderer/p2p/port_allocator.h', | 408 'renderer/p2p/port_allocator.h', |
409 'renderer/p2p/socket_client.cc', | 409 'renderer/p2p/socket_client.cc', |
410 'renderer/p2p/socket_client.h', | 410 'renderer/p2p/socket_client.h', |
411 'renderer/p2p/socket_dispatcher.cc', | 411 'renderer/p2p/socket_dispatcher.cc', |
412 'renderer/p2p/socket_dispatcher.h', | 412 'renderer/p2p/socket_dispatcher.h', |
413 ], | 413 ], |
414 }], | 414 }], |
| 415 ['enable_webrtc==1 and google_tv==1', { |
| 416 'sources': [ |
| 417 'renderer/media/rtc_video_decoder_bridge_tv.cc', |
| 418 'renderer/media/rtc_video_decoder_bridge_tv.h', |
| 419 'renderer/media/rtc_video_decoder_factory_tv.cc', |
| 420 'renderer/media/rtc_video_decoder_factory_tv.h', |
| 421 ], |
| 422 }], |
415 ['enable_plugins==1', { | 423 ['enable_plugins==1', { |
416 'dependencies': [ | 424 'dependencies': [ |
417 '../ppapi/ppapi_internal.gyp:ppapi_host', | 425 '../ppapi/ppapi_internal.gyp:ppapi_host', |
418 '../ppapi/ppapi_internal.gyp:ppapi_proxy', | 426 '../ppapi/ppapi_internal.gyp:ppapi_proxy', |
419 '../ppapi/ppapi_internal.gyp:ppapi_shared', | 427 '../ppapi/ppapi_internal.gyp:ppapi_shared', |
420 ], | 428 ], |
421 }, { # enable_plugins==0 | 429 }, { # enable_plugins==0 |
422 'sources/': [ | 430 'sources/': [ |
423 ['exclude', '^renderer/pepper/'], | 431 ['exclude', '^renderer/pepper/'], |
424 ], | 432 ], |
(...skipping 16 matching lines...) Expand all Loading... |
441 }], | 449 }], |
442 ], | 450 ], |
443 'target_conditions': [ | 451 'target_conditions': [ |
444 ['OS=="android"', { | 452 ['OS=="android"', { |
445 'sources/': [ | 453 'sources/': [ |
446 ['include', '^renderer/render_view_linux\\.cc$'], | 454 ['include', '^renderer/render_view_linux\\.cc$'], |
447 ], | 455 ], |
448 }], | 456 }], |
449 ], | 457 ], |
450 } | 458 } |
OLD | NEW |