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 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
401 'renderer/p2p/ipc_socket_factory.cc', | 401 'renderer/p2p/ipc_socket_factory.cc', |
402 'renderer/p2p/ipc_socket_factory.h', | 402 'renderer/p2p/ipc_socket_factory.h', |
403 'renderer/p2p/port_allocator.cc', | 403 'renderer/p2p/port_allocator.cc', |
404 'renderer/p2p/port_allocator.h', | 404 'renderer/p2p/port_allocator.h', |
405 'renderer/p2p/socket_client.cc', | 405 'renderer/p2p/socket_client.cc', |
406 'renderer/p2p/socket_client.h', | 406 'renderer/p2p/socket_client.h', |
407 'renderer/p2p/socket_dispatcher.cc', | 407 'renderer/p2p/socket_dispatcher.cc', |
408 'renderer/p2p/socket_dispatcher.h', | 408 'renderer/p2p/socket_dispatcher.h', |
409 ], | 409 ], |
410 }], | 410 }], |
411 ['enable_webrtc==1 and google_tv==1', { | |
412 'sources': [ | |
413 'renderer/media/rtc_video_decoder_factory_tv.cc', | |
ycheo (away)
2013/05/02 02:45:21
Sort these files alphabetically.
wonsik
2013/05/02 15:22:00
Done.
| |
414 'renderer/media/rtc_video_decoder_factory_tv.h', | |
415 'renderer/media/rtc_video_decoder_bridge_tv.cc', | |
416 'renderer/media/rtc_video_decoder_bridge_tv.h', | |
417 ], | |
418 }], | |
411 ['enable_plugins==1', { | 419 ['enable_plugins==1', { |
412 'dependencies': [ | 420 'dependencies': [ |
413 '../ppapi/ppapi_internal.gyp:ppapi_host', | 421 '../ppapi/ppapi_internal.gyp:ppapi_host', |
414 '../ppapi/ppapi_internal.gyp:ppapi_proxy', | 422 '../ppapi/ppapi_internal.gyp:ppapi_proxy', |
415 '../ppapi/ppapi_internal.gyp:ppapi_shared', | 423 '../ppapi/ppapi_internal.gyp:ppapi_shared', |
416 ], | 424 ], |
417 }, { # enable_plugins==0 | 425 }, { # enable_plugins==0 |
418 'sources/': [ | 426 'sources/': [ |
419 ['exclude', '^renderer/pepper/'], | 427 ['exclude', '^renderer/pepper/'], |
420 ], | 428 ], |
(...skipping 16 matching lines...) Expand all Loading... | |
437 }], | 445 }], |
438 ], | 446 ], |
439 'target_conditions': [ | 447 'target_conditions': [ |
440 ['OS=="android"', { | 448 ['OS=="android"', { |
441 'sources/': [ | 449 'sources/': [ |
442 ['include', '^renderer/render_view_linux\\.cc$'], | 450 ['include', '^renderer/render_view_linux\\.cc$'], |
443 ], | 451 ], |
444 }], | 452 }], |
445 ], | 453 ], |
446 } | 454 } |
OLD | NEW |