| OLD | NEW |
| 1 # Copyright (c) 2010 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 'target_defaults': { | 6 'target_defaults': { |
| 7 'variables': { | 7 'variables': { |
| 8 'chrome_exe_target': 0, | 8 'chrome_exe_target': 0, |
| 9 }, | 9 }, |
| 10 'target_conditions': [ | 10 'target_conditions': [ |
| 11 ['chrome_exe_target==1', { | 11 ['chrome_exe_target==1', { |
| (...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 'dependencies': [ | 442 'dependencies': [ |
| 443 # On Windows and Mac, make sure we've built chrome_dll, which | 443 # On Windows and Mac, make sure we've built chrome_dll, which |
| 444 # contains all of the library code with Chromium functionality. | 444 # contains all of the library code with Chromium functionality. |
| 445 'chrome_dll', | 445 'chrome_dll', |
| 446 ], | 446 ], |
| 447 }], | 447 }], |
| 448 ['OS=="win"', { | 448 ['OS=="win"', { |
| 449 'dependencies': [ | 449 'dependencies': [ |
| 450 'installer_util', | 450 'installer_util', |
| 451 'installer_util_strings', | 451 'installer_util_strings', |
| 452 '../base/base.gyp:base', |
| 452 '../breakpad/breakpad.gyp:breakpad_handler', | 453 '../breakpad/breakpad.gyp:breakpad_handler', |
| 453 '../breakpad/breakpad.gyp:breakpad_sender', | 454 '../breakpad/breakpad.gyp:breakpad_sender', |
| 454 '../sandbox/sandbox.gyp:sandbox', | 455 '../sandbox/sandbox.gyp:sandbox', |
| 455 'app/locales/locales.gyp:*', | 456 'app/locales/locales.gyp:*', |
| 456 'app/policy/cloud_policy_codegen.gyp:policy', | 457 'app/policy/cloud_policy_codegen.gyp:policy', |
| 457 ], | 458 ], |
| 458 'msvs_settings': { | 459 'msvs_settings': { |
| 459 'VCLinkerTool': { | 460 'VCLinkerTool': { |
| 460 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib', | 461 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib', |
| 461 'ProgramDatabaseFile': '$(OutDir)\\chrome_exe.pdb', | 462 'ProgramDatabaseFile': '$(OutDir)\\chrome_exe.pdb', |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 520 'configurations': { | 521 'configurations': { |
| 521 'Common_Base': { | 522 'Common_Base': { |
| 522 'msvs_target_platform': 'x64', | 523 'msvs_target_platform': 'x64', |
| 523 }, | 524 }, |
| 524 }, | 525 }, |
| 525 }, | 526 }, |
| 526 ], | 527 ], |
| 527 }], | 528 }], |
| 528 ], | 529 ], |
| 529 } | 530 } |
| OLD | NEW |