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 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
412 'renderer/p2p/ipc_socket_factory.cc', | 412 'renderer/p2p/ipc_socket_factory.cc', |
413 'renderer/p2p/ipc_socket_factory.h', | 413 'renderer/p2p/ipc_socket_factory.h', |
414 'renderer/p2p/port_allocator.cc', | 414 'renderer/p2p/port_allocator.cc', |
415 'renderer/p2p/port_allocator.h', | 415 'renderer/p2p/port_allocator.h', |
416 'renderer/p2p/socket_client.cc', | 416 'renderer/p2p/socket_client.cc', |
417 'renderer/p2p/socket_client.h', | 417 'renderer/p2p/socket_client.h', |
418 'renderer/p2p/socket_dispatcher.cc', | 418 'renderer/p2p/socket_dispatcher.cc', |
419 'renderer/p2p/socket_dispatcher.h', | 419 'renderer/p2p/socket_dispatcher.h', |
420 ], | 420 ], |
421 }], | 421 }], |
| 422 ['enable_webrtc==1 and google_tv==1', { |
| 423 'sources': [ |
| 424 'renderer/media/rtc_video_decoder_bridge_tv.cc', |
| 425 'renderer/media/rtc_video_decoder_bridge_tv.h', |
| 426 'renderer/media/rtc_video_decoder_factory_tv.cc', |
| 427 'renderer/media/rtc_video_decoder_factory_tv.h', |
| 428 ], |
| 429 }], |
422 ['enable_plugins==1', { | 430 ['enable_plugins==1', { |
423 'dependencies': [ | 431 'dependencies': [ |
424 '../ppapi/ppapi_internal.gyp:ppapi_host', | 432 '../ppapi/ppapi_internal.gyp:ppapi_host', |
425 '../ppapi/ppapi_internal.gyp:ppapi_proxy', | 433 '../ppapi/ppapi_internal.gyp:ppapi_proxy', |
426 '../ppapi/ppapi_internal.gyp:ppapi_shared', | 434 '../ppapi/ppapi_internal.gyp:ppapi_shared', |
427 ], | 435 ], |
428 }, { # enable_plugins==0 | 436 }, { # enable_plugins==0 |
429 'sources/': [ | 437 'sources/': [ |
430 ['exclude', '^renderer/pepper/'], | 438 ['exclude', '^renderer/pepper/'], |
431 ], | 439 ], |
(...skipping 16 matching lines...) Expand all Loading... |
448 }], | 456 }], |
449 ], | 457 ], |
450 'target_conditions': [ | 458 'target_conditions': [ |
451 ['OS=="android"', { | 459 ['OS=="android"', { |
452 'sources/': [ | 460 'sources/': [ |
453 ['include', '^renderer/render_view_linux\\.cc$'], | 461 ['include', '^renderer/render_view_linux\\.cc$'], |
454 ], | 462 ], |
455 }], | 463 }], |
456 ], | 464 ], |
457 } | 465 } |
OLD | NEW |