Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: chrome/installer/mini_installer.gypi

Issue 233843003: Remove a few dead MSVS_VERSION checks. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « build/common.gypi ('k') | testing/gtest.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | testing/gtest.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698