| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 | 8 |
| 9 'variables': { | 9 'variables': { |
| 10 'version_py_path': 'tools/build/version.py', | 10 'version_py_path': 'tools/build/version.py', |
| (...skipping 1748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1759 'ImportLibrary': '$(OutDir)\\lib\\chrome_dll.lib', | 1759 'ImportLibrary': '$(OutDir)\\lib\\chrome_dll.lib', |
| 1760 'ProgramDatabaseFile': '$(OutDir)\\chrome_dll.pdb', | 1760 'ProgramDatabaseFile': '$(OutDir)\\chrome_dll.pdb', |
| 1761 # Set /SUBSYSTEM:WINDOWS for chrome.dll (for consistency). | 1761 # Set /SUBSYSTEM:WINDOWS for chrome.dll (for consistency). |
| 1762 'SubSystem': '2', | 1762 'SubSystem': '2', |
| 1763 }, | 1763 }, |
| 1764 'VCManifestTool': { | 1764 'VCManifestTool': { |
| 1765 'AdditionalManifestFiles': '$(ProjectDir)\\app\\chrome.dll.man
ifest', | 1765 'AdditionalManifestFiles': '$(ProjectDir)\\app\\chrome.dll.man
ifest', |
| 1766 }, | 1766 }, |
| 1767 }, | 1767 }, |
| 1768 'configurations': { | 1768 'configurations': { |
| 1769 'Debug': { | 1769 'Debug_Base': { |
| 1770 'msvs_settings': { | 1770 'msvs_settings': { |
| 1771 'VCLinkerTool': { | 1771 'VCLinkerTool': { |
| 1772 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', | 1772 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', |
| 1773 }, | 1773 }, |
| 1774 }, | 1774 }, |
| 1775 }, | 1775 }, |
| 1776 }, | 1776 }, |
| 1777 }], # OS=="win" | 1777 }], # OS=="win" |
| 1778 ['OS=="mac"', { | 1778 ['OS=="mac"', { |
| 1779 # The main browser executable's name is <(mac_product_name). | 1779 # The main browser executable's name is <(mac_product_name). |
| (...skipping 837 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2617 'conditions': [ | 2617 'conditions': [ |
| 2618 ['OS=="win"', { | 2618 ['OS=="win"', { |
| 2619 'conditions': [ | 2619 'conditions': [ |
| 2620 ['win_use_allocator_shim==1', { | 2620 ['win_use_allocator_shim==1', { |
| 2621 'dependencies': [ | 2621 'dependencies': [ |
| 2622 '<(allocator_target)', | 2622 '<(allocator_target)', |
| 2623 ], | 2623 ], |
| 2624 }], | 2624 }], |
| 2625 ], | 2625 ], |
| 2626 'configurations': { | 2626 'configurations': { |
| 2627 'Debug': { | 2627 'Debug_Base': { |
| 2628 'msvs_settings': { | 2628 'msvs_settings': { |
| 2629 'VCLinkerTool': { | 2629 'VCLinkerTool': { |
| 2630 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', | 2630 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', |
| 2631 }, | 2631 }, |
| 2632 }, | 2632 }, |
| 2633 }, | 2633 }, |
| 2634 }, | 2634 }, |
| 2635 }], | 2635 }], |
| 2636 ], | 2636 ], |
| 2637 }, | 2637 }, |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2725 }], # targets | 2725 }], # targets |
| 2726 }], # OS=="linux" or OS=="freebsd" | 2726 }], # OS=="linux" or OS=="freebsd" |
| 2727 ], # 'conditions' | 2727 ], # 'conditions' |
| 2728 } | 2728 } |
| 2729 | 2729 |
| 2730 # Local Variables: | 2730 # Local Variables: |
| 2731 # tab-width:2 | 2731 # tab-width:2 |
| 2732 # indent-tabs-mode:nil | 2732 # indent-tabs-mode:nil |
| 2733 # End: | 2733 # End: |
| 2734 # vim: set expandtab tabstop=2 shiftwidth=2: | 2734 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |