| 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', { |
| 11 'conditions': [ | 11 'conditions': [ |
| 12 ['OS=="win"', { | 12 ['OS=="win"', { |
| 13 'include_dirs': [ | 13 'include_dirs': [ |
| 14 '<(DEPTH)/third_party/wtl/include', | 14 '<(DEPTH)/third_party/wtl/include', |
| 15 ], | 15 ], |
| 16 'defines': [ | 16 'defines': [ |
| 17 'CHROME_DLL', | 17 'CHROME_DLL', |
| 18 'BROWSER_DLL', | 18 'BROWSER_DLL', |
| 19 'RENDERER_DLL', | 19 'RENDERER_DLL', |
| 20 'PLUGIN_DLL', | 20 'PLUGIN_DLL', |
| 21 ], | 21 ], |
| 22 'msvs_settings': { | 22 'msvs_settings': { |
| 23 'VCLinkerTool': { | 23 'VCLinkerTool': { |
| 24 'BaseAddress': '0x01c30000', | 24 'BaseAddress': '0x01c30000', |
| 25 'DelayLoadDLLs': [ | 25 'DelayLoadDLLs': [ |
| 26 'comdlg32.dll', | |
| 27 'crypt32.dll', | 26 'crypt32.dll', |
| 28 'cryptui.dll', | 27 'cryptui.dll', |
| 29 'dhcpcsvc.dll', | 28 'winhttp.dll', |
| 29 'wininet.dll', |
| 30 'wsock32.dll', |
| 31 'ws2_32.dll', |
| 32 'winspool.drv', |
| 33 'comdlg32.dll', |
| 30 'imagehlp.dll', | 34 'imagehlp.dll', |
| 35 'urlmon.dll', |
| 31 'imm32.dll', | 36 'imm32.dll', |
| 32 'iphlpapi.dll', | 37 'iphlpapi.dll', |
| 33 'setupapi.dll', | 38 'setupapi.dll', |
| 34 'urlmon.dll', | |
| 35 'winhttp.dll', | |
| 36 'wininet.dll', | |
| 37 'winspool.drv', | |
| 38 'ws2_32.dll', | |
| 39 'wsock32.dll', | |
| 40 ], | 39 ], |
| 41 # Set /SUBSYSTEM:WINDOWS for chrome.dll (for consistency). | 40 # Set /SUBSYSTEM:WINDOWS for chrome.dll (for consistency). |
| 42 'SubSystem': '2', | 41 'SubSystem': '2', |
| 43 }, | 42 }, |
| 44 'VCManifestTool': { | 43 'VCManifestTool': { |
| 45 'AdditionalManifestFiles': '$(ProjectDir)\\app\\chrome.dll.manif
est', | 44 'AdditionalManifestFiles': '$(ProjectDir)\\app\\chrome.dll.manif
est', |
| 46 }, | 45 }, |
| 47 }, | 46 }, |
| 48 'configurations': { | 47 'configurations': { |
| 49 'Debug_Base': { | 48 'Debug_Base': { |
| (...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 650 'LinkIncremental': '<(msvs_debug_link_nonincremental)', | 649 'LinkIncremental': '<(msvs_debug_link_nonincremental)', |
| 651 }, | 650 }, |
| 652 }, | 651 }, |
| 653 }, | 652 }, |
| 654 }, | 653 }, |
| 655 }, # target chrome_dll | 654 }, # target chrome_dll |
| 656 ], | 655 ], |
| 657 }], | 656 }], |
| 658 ], | 657 ], |
| 659 } | 658 } |
| OLD | NEW |