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 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
390 'renderer/p2p/ipc_socket_factory.cc', | 390 'renderer/p2p/ipc_socket_factory.cc', |
391 'renderer/p2p/ipc_socket_factory.h', | 391 'renderer/p2p/ipc_socket_factory.h', |
392 'renderer/p2p/port_allocator.cc', | 392 'renderer/p2p/port_allocator.cc', |
393 'renderer/p2p/port_allocator.h', | 393 'renderer/p2p/port_allocator.h', |
394 'renderer/p2p/socket_client.cc', | 394 'renderer/p2p/socket_client.cc', |
395 'renderer/p2p/socket_client.h', | 395 'renderer/p2p/socket_client.h', |
396 'renderer/p2p/socket_dispatcher.cc', | 396 'renderer/p2p/socket_dispatcher.cc', |
397 'renderer/p2p/socket_dispatcher.h', | 397 'renderer/p2p/socket_dispatcher.h', |
398 ], | 398 ], |
399 }], | 399 }], |
| 400 ['enable_webrtc==1 and google_tv==1', { |
| 401 'sources': [ |
| 402 'renderer/media/rtc_video_decoder_factory_tv.cc', |
| 403 'renderer/media/rtc_video_decoder_factory_tv.h', |
| 404 'renderer/media/rtc_video_decoder_bridge_tv.cc', |
| 405 'renderer/media/rtc_video_decoder_bridge_tv.h', |
| 406 ], |
| 407 }], |
400 ['enable_plugins==1', { | 408 ['enable_plugins==1', { |
401 'dependencies': [ | 409 'dependencies': [ |
402 '../ppapi/ppapi_internal.gyp:ppapi_host', | 410 '../ppapi/ppapi_internal.gyp:ppapi_host', |
403 '../ppapi/ppapi_internal.gyp:ppapi_proxy', | 411 '../ppapi/ppapi_internal.gyp:ppapi_proxy', |
404 '../ppapi/ppapi_internal.gyp:ppapi_shared', | 412 '../ppapi/ppapi_internal.gyp:ppapi_shared', |
405 ], | 413 ], |
406 }, { # enable_plugins==0 | 414 }, { # enable_plugins==0 |
407 'sources/': [ | 415 'sources/': [ |
408 ['exclude', '^renderer/pepper/'], | 416 ['exclude', '^renderer/pepper/'], |
409 ], | 417 ], |
(...skipping 16 matching lines...) Expand all Loading... |
426 }], | 434 }], |
427 ], | 435 ], |
428 'target_conditions': [ | 436 'target_conditions': [ |
429 ['OS=="android"', { | 437 ['OS=="android"', { |
430 'sources/': [ | 438 'sources/': [ |
431 ['include', '^renderer/render_view_linux\\.cc$'], | 439 ['include', '^renderer/render_view_linux\\.cc$'], |
432 ], | 440 ], |
433 }], | 441 }], |
434 ], | 442 ], |
435 } | 443 } |
OLD | NEW |