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 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
407 'renderer/p2p/ipc_socket_factory.cc', | 407 'renderer/p2p/ipc_socket_factory.cc', |
408 'renderer/p2p/ipc_socket_factory.h', | 408 'renderer/p2p/ipc_socket_factory.h', |
409 'renderer/p2p/port_allocator.cc', | 409 'renderer/p2p/port_allocator.cc', |
410 'renderer/p2p/port_allocator.h', | 410 'renderer/p2p/port_allocator.h', |
411 'renderer/p2p/socket_client.cc', | 411 'renderer/p2p/socket_client.cc', |
412 'renderer/p2p/socket_client.h', | 412 'renderer/p2p/socket_client.h', |
413 'renderer/p2p/socket_dispatcher.cc', | 413 'renderer/p2p/socket_dispatcher.cc', |
414 'renderer/p2p/socket_dispatcher.h', | 414 'renderer/p2p/socket_dispatcher.h', |
415 ], | 415 ], |
416 }], | 416 }], |
417 ['enable_webrtc==1 and google_tv==1', { | |
Ami GONE FROM CHROMIUM
2013/05/08 20:26:44
Do you have numbers quantifying the benefit of thi
| |
418 'sources': [ | |
419 'renderer/media/rtc_video_decoder_bridge_tv.cc', | |
420 'renderer/media/rtc_video_decoder_bridge_tv.h', | |
421 'renderer/media/rtc_video_decoder_factory_tv.cc', | |
422 'renderer/media/rtc_video_decoder_factory_tv.h', | |
423 ], | |
424 }], | |
417 ['enable_plugins==1', { | 425 ['enable_plugins==1', { |
418 'dependencies': [ | 426 'dependencies': [ |
419 '../ppapi/ppapi_internal.gyp:ppapi_host', | 427 '../ppapi/ppapi_internal.gyp:ppapi_host', |
420 '../ppapi/ppapi_internal.gyp:ppapi_proxy', | 428 '../ppapi/ppapi_internal.gyp:ppapi_proxy', |
421 '../ppapi/ppapi_internal.gyp:ppapi_shared', | 429 '../ppapi/ppapi_internal.gyp:ppapi_shared', |
422 ], | 430 ], |
423 }, { # enable_plugins==0 | 431 }, { # enable_plugins==0 |
424 'sources/': [ | 432 'sources/': [ |
425 ['exclude', '^renderer/pepper/'], | 433 ['exclude', '^renderer/pepper/'], |
426 ], | 434 ], |
(...skipping 16 matching lines...) Expand all Loading... | |
443 }], | 451 }], |
444 ], | 452 ], |
445 'target_conditions': [ | 453 'target_conditions': [ |
446 ['OS=="android"', { | 454 ['OS=="android"', { |
447 'sources/': [ | 455 'sources/': [ |
448 ['include', '^renderer/render_view_linux\\.cc$'], | 456 ['include', '^renderer/render_view_linux\\.cc$'], |
449 ], | 457 ], |
450 }], | 458 }], |
451 ], | 459 ], |
452 } | 460 } |
OLD | NEW |