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 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
397 'renderer/p2p/ipc_socket_factory.cc', | 397 'renderer/p2p/ipc_socket_factory.cc', |
398 'renderer/p2p/ipc_socket_factory.h', | 398 'renderer/p2p/ipc_socket_factory.h', |
399 'renderer/p2p/port_allocator.cc', | 399 'renderer/p2p/port_allocator.cc', |
400 'renderer/p2p/port_allocator.h', | 400 'renderer/p2p/port_allocator.h', |
401 'renderer/p2p/socket_client.cc', | 401 'renderer/p2p/socket_client.cc', |
402 'renderer/p2p/socket_client.h', | 402 'renderer/p2p/socket_client.h', |
403 'renderer/p2p/socket_dispatcher.cc', | 403 'renderer/p2p/socket_dispatcher.cc', |
404 'renderer/p2p/socket_dispatcher.h', | 404 'renderer/p2p/socket_dispatcher.h', |
405 ], | 405 ], |
406 }], | 406 }], |
407 ['enable_webrtc==1 and google_tv==1', { | |
408 'sources': [ | |
409 'renderer/media/rtc_video_decoder_factory_tv.cc', | |
410 'renderer/media/rtc_video_decoder_factory_tv.h', | |
411 'renderer/media/rtc_video_decoder_bridge_tv.cc', | |
412 'renderer/media/rtc_video_decoder_bridge_tv.h', | |
Ami GONE FROM CHROMIUM
2013/04/29 22:11:09
Is any of this new code covered by tests that run
wonsik
2013/05/03 18:31:19
Added a test.
| |
413 ], | |
414 }], | |
407 ['enable_plugins==1', { | 415 ['enable_plugins==1', { |
408 'dependencies': [ | 416 'dependencies': [ |
409 '../ppapi/ppapi_internal.gyp:ppapi_host', | 417 '../ppapi/ppapi_internal.gyp:ppapi_host', |
410 '../ppapi/ppapi_internal.gyp:ppapi_proxy', | 418 '../ppapi/ppapi_internal.gyp:ppapi_proxy', |
411 '../ppapi/ppapi_internal.gyp:ppapi_shared', | 419 '../ppapi/ppapi_internal.gyp:ppapi_shared', |
412 ], | 420 ], |
413 }, { # enable_plugins==0 | 421 }, { # enable_plugins==0 |
414 'sources/': [ | 422 'sources/': [ |
415 ['exclude', '^renderer/pepper/'], | 423 ['exclude', '^renderer/pepper/'], |
416 ], | 424 ], |
(...skipping 16 matching lines...) Expand all Loading... | |
433 }], | 441 }], |
434 ], | 442 ], |
435 'target_conditions': [ | 443 'target_conditions': [ |
436 ['OS=="android"', { | 444 ['OS=="android"', { |
437 'sources/': [ | 445 'sources/': [ |
438 ['include', '^renderer/render_view_linux\\.cc$'], | 446 ['include', '^renderer/render_view_linux\\.cc$'], |
439 ], | 447 ], |
440 }], | 448 }], |
441 ], | 449 ], |
442 } | 450 } |
OLD | NEW |