| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'content_browser', | 8 'target_name': 'content_browser', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 'browser/renderer_host/p2p/socket_host_tcp.cc', | 413 'browser/renderer_host/p2p/socket_host_tcp.cc', |
| 414 'browser/renderer_host/p2p/socket_host_tcp.h', | 414 'browser/renderer_host/p2p/socket_host_tcp.h', |
| 415 'browser/renderer_host/p2p/socket_host_tcp_server.cc', | 415 'browser/renderer_host/p2p/socket_host_tcp_server.cc', |
| 416 'browser/renderer_host/p2p/socket_host_tcp_server.h', | 416 'browser/renderer_host/p2p/socket_host_tcp_server.h', |
| 417 'browser/renderer_host/p2p/socket_host_udp.cc', | 417 'browser/renderer_host/p2p/socket_host_udp.cc', |
| 418 'browser/renderer_host/p2p/socket_host_udp.h', | 418 'browser/renderer_host/p2p/socket_host_udp.h', |
| 419 'browser/renderer_host/p2p/socket_dispatcher_host.cc', | 419 'browser/renderer_host/p2p/socket_dispatcher_host.cc', |
| 420 'browser/renderer_host/p2p/socket_dispatcher_host.h', | 420 'browser/renderer_host/p2p/socket_dispatcher_host.h', |
| 421 ], | 421 ], |
| 422 }], | 422 }], |
| 423 ['OS=="win"', { | |
| 424 'msvs_guid': '639DB58D-32C2-435A-A711-65A12F62E442', | |
| 425 }], | |
| 426 ['toolkit_uses_gtk == 1', { | 423 ['toolkit_uses_gtk == 1', { |
| 427 'dependencies': [ | 424 'dependencies': [ |
| 428 '../build/linux/system.gyp:dbus-glib', | 425 '../build/linux/system.gyp:dbus-glib', |
| 429 # For FcLangSetAdd call in render_sandbox_host_linux.cc | 426 # For FcLangSetAdd call in render_sandbox_host_linux.cc |
| 430 '../build/linux/system.gyp:fontconfig', | 427 '../build/linux/system.gyp:fontconfig', |
| 431 '../build/linux/system.gyp:gtk', | 428 '../build/linux/system.gyp:gtk', |
| 432 # For XShm* in backing_store_x.cc | 429 # For XShm* in backing_store_x.cc |
| 433 '../build/linux/system.gyp:x11', | 430 '../build/linux/system.gyp:x11', |
| 434 ], | 431 ], |
| 435 }], | 432 }], |
| 436 ['OS=="linux" and chromeos==1', { | 433 ['OS=="linux" and chromeos==1', { |
| 437 'sources/': [ | 434 'sources/': [ |
| 438 ['exclude', '^browser/geolocation/wifi_data_provider_linux.cc'], | 435 ['exclude', '^browser/geolocation/wifi_data_provider_linux.cc'], |
| 439 ['exclude', '^browser/geolocation/wifi_data_provider_linux.h'], | 436 ['exclude', '^browser/geolocation/wifi_data_provider_linux.h'], |
| 440 ] | 437 ] |
| 441 }], | 438 }], |
| 442 ['OS=="mac"', { | 439 ['OS=="mac"', { |
| 443 'link_settings': { | 440 'link_settings': { |
| 444 'mac_bundle_resources': [ | 441 'mac_bundle_resources': [ |
| 445 'browser/gpu.sb', | 442 'browser/gpu.sb', |
| 446 'browser/worker.sb', | 443 'browser/worker.sb', |
| 447 ], | 444 ], |
| 448 }, | 445 }, |
| 449 }], | 446 }], |
| 450 ], | 447 ], |
| 451 }, | 448 }, |
| 452 ], | 449 ], |
| 453 } | 450 } |
| OLD | NEW |