| 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'chrome', | 8 'target_name': 'chrome', |
| 9 'type': 'executable', | 9 'type': 'executable', |
| 10 'mac_bundle': 1, | 10 'mac_bundle': 1, |
| (...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 456 }], | 456 }], |
| 457 ['OS=="win"', { | 457 ['OS=="win"', { |
| 458 'dependencies': [ | 458 'dependencies': [ |
| 459 'chrome_dll', | 459 'chrome_dll', |
| 460 'chrome_version_resources', | 460 'chrome_version_resources', |
| 461 'installer_util', | 461 'installer_util', |
| 462 'image_pre_reader', | 462 'image_pre_reader', |
| 463 '../base/base.gyp:base', | 463 '../base/base.gyp:base', |
| 464 '../breakpad/breakpad.gyp:breakpad_handler', | 464 '../breakpad/breakpad.gyp:breakpad_handler', |
| 465 '../breakpad/breakpad.gyp:breakpad_sender', | 465 '../breakpad/breakpad.gyp:breakpad_sender', |
| 466 # Provide debug info for detecting inter-process pepper deadlocks. |
| 467 # TODO(yzshen): Remove when enough information is collected and the |
| 468 # hang rate of pepper/renderer processes is reduced. |
| 469 '../ppapi/ppapi_internal.gyp:ppapi_shared', |
| 466 '../sandbox/sandbox.gyp:sandbox', | 470 '../sandbox/sandbox.gyp:sandbox', |
| 467 'app/policy/cloud_policy_codegen.gyp:policy', | 471 'app/policy/cloud_policy_codegen.gyp:policy', |
| 468 ], | 472 ], |
| 469 'sources': [ | 473 'sources': [ |
| 470 'app/chrome_exe.rc', | 474 'app/chrome_exe.rc', |
| 471 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_exe_version.rc', | 475 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_exe_version.rc', |
| 472 ], | 476 ], |
| 473 'msvs_settings': { | 477 'msvs_settings': { |
| 474 'VCLinkerTool': { | 478 'VCLinkerTool': { |
| 475 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib', | 479 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib', |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 594 'target_name': 'chrome_nacl_win64', | 598 'target_name': 'chrome_nacl_win64', |
| 595 'type': 'none', | 599 'type': 'none', |
| 596 'sources': [], | 600 'sources': [], |
| 597 }, | 601 }, |
| 598 ], | 602 ], |
| 599 }], | 603 }], |
| 600 ], | 604 ], |
| 601 }], | 605 }], |
| 602 ], | 606 ], |
| 603 } | 607 } |
| OLD | NEW |