| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'target_defaults': { | 5 'target_defaults': { |
| 6 'variables': { | 6 'variables': { |
| 7 'chrome_dll_target': 0, | 7 'chrome_dll_target': 0, |
| 8 }, | 8 }, |
| 9 'target_conditions': [ | 9 'target_conditions': [ |
| 10 ['chrome_dll_target==1', { | 10 ['chrome_dll_target==1', { |
| (...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 601 'msvs_settings': { | 601 'msvs_settings': { |
| 602 'VCLinkerTool': { | 602 'VCLinkerTool': { |
| 603 'ImportLibrary': '$(OutDir)\\lib\\nacl64_dll.lib', | 603 'ImportLibrary': '$(OutDir)\\lib\\nacl64_dll.lib', |
| 604 'ProgramDatabaseFile': '$(OutDir)\\nacl64_dll.pdb', | 604 'ProgramDatabaseFile': '$(OutDir)\\nacl64_dll.pdb', |
| 605 }, | 605 }, |
| 606 }, | 606 }, |
| 607 'configurations': { | 607 'configurations': { |
| 608 'Common_Base': { | 608 'Common_Base': { |
| 609 'msvs_target_platform': 'x64', | 609 'msvs_target_platform': 'x64', |
| 610 }, | 610 }, |
| 611 'Debug_Base': { |
| 612 'msvs_settings': { |
| 613 'VCLinkerTool': { |
| 614 'LinkIncremental': '<(msvs_debug_link_nonincremental)', |
| 615 }, |
| 616 }, |
| 617 }, |
| 611 }, | 618 }, |
| 612 }, # target chrome_dll | 619 }, # target chrome_dll |
| 613 ], | 620 ], |
| 614 }], | 621 }], |
| 615 ], | 622 ], |
| 616 } | 623 } |
| OLD | NEW |