| 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 'dependencies': [ | 5 'dependencies': [ |
| 6 '<@(chrome_dll_project)', | 6 '<@(chrome_dll_project)', |
| 7 '../chrome.gyp:chrome', | 7 '../chrome.gyp:chrome', |
| 8 '../chrome.gyp:chrome_nacl_win64', | 8 '../chrome.gyp:chrome_nacl_win64', |
| 9 '../chrome.gyp:default_extensions', | 9 '../chrome.gyp:default_extensions', |
| 10 '../chrome.gyp:setup', | 10 '../chrome.gyp:setup', |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 ], | 54 ], |
| 55 'DelayLoadDLLs': [], | 55 'DelayLoadDLLs': [], |
| 56 'EntryPointSymbol': 'MainEntryPoint', | 56 'EntryPointSymbol': 'MainEntryPoint', |
| 57 'IgnoreAllDefaultLibraries': 'true', | 57 'IgnoreAllDefaultLibraries': 'true', |
| 58 'OptimizeForWindows98': '1', | 58 'OptimizeForWindows98': '1', |
| 59 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 59 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 60 'AdditionalDependencies': [ | 60 'AdditionalDependencies': [ |
| 61 'shlwapi.lib', | 61 'shlwapi.lib', |
| 62 'setupapi.lib', | 62 'setupapi.lib', |
| 63 ], | 63 ], |
| 64 'conditions': [ | |
| 65 ['MSVS_VERSION=="2005e"', { | |
| 66 'AdditionalDependencies': [ # Must explicitly link in VC2005E | |
| 67 'advapi32.lib', | |
| 68 'shell32.lib', | |
| 69 ], | |
| 70 }], | |
| 71 ], | |
| 72 }, | 64 }, |
| 73 'VCManifestTool': { | 65 'VCManifestTool': { |
| 74 'AdditionalManifestFiles': [ | 66 'AdditionalManifestFiles': [ |
| 75 '$(ProjectDir)\\mini_installer\\mini_installer.exe.manifest', | 67 '$(ProjectDir)\\mini_installer\\mini_installer.exe.manifest', |
| 76 ], | 68 ], |
| 77 }, | 69 }, |
| 78 }, | 70 }, |
| 79 'configurations': { | 71 'configurations': { |
| 80 'Debug_Base': { | 72 'Debug_Base': { |
| 81 'msvs_settings': { | 73 'msvs_settings': { |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 'variables': { | 228 'variables': { |
| 237 'branding_dir': '../app/theme/google_chrome', | 229 'branding_dir': '../app/theme/google_chrome', |
| 238 }, | 230 }, |
| 239 }, { # else branding!="Chrome" | 231 }, { # else branding!="Chrome" |
| 240 'variables': { | 232 'variables': { |
| 241 'branding_dir': '../app/theme/chromium', | 233 'branding_dir': '../app/theme/chromium', |
| 242 }, | 234 }, |
| 243 }], | 235 }], |
| 244 ], | 236 ], |
| 245 } | 237 } |
| OLD | NEW |