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

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

Issue 6676030: WinDDK ATL and MSVC express compatability (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Address comments: -EXPRESS define, memset always implemented, coding style Created 9 years, 9 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
OLDNEW
1 { 1 {
2 'variables': { 2 'variables': {
3 'version_py': '../../chrome/tools/build/version.py', 3 'version_py': '../../chrome/tools/build/version.py',
4 'version_path': '../../chrome/VERSION', 4 'version_path': '../../chrome/VERSION',
5 'lastchange_path': '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE', 5 'lastchange_path': '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE',
6 # 'branding_dir' is set in the 'conditions' section at the bottom. 6 # 'branding_dir' is set in the 'conditions' section at the bottom.
7 'msvs_use_common_release': 0, 7 'msvs_use_common_release': 0,
8 'msvs_use_common_linker_extras': 0, 8 'msvs_use_common_linker_extras': 0,
9 }, 9 },
10 'conditions': [ 10 'conditions': [
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 'AdditionalLibraryDirectories': [ 51 'AdditionalLibraryDirectories': [
52 '<(DEPTH)/third_party/platformsdk_win7/files/Lib', 52 '<(DEPTH)/third_party/platformsdk_win7/files/Lib',
53 '<(PRODUCT_DIR)/lib' 53 '<(PRODUCT_DIR)/lib'
54 ], 54 ],
55 'DelayLoadDLLs': [], 55 'DelayLoadDLLs': [],
56 'EntryPointSymbol': 'MainEntryPoint', 56 'EntryPointSymbol': 'MainEntryPoint',
57 'GenerateMapFile': 'true', 57 'GenerateMapFile': 'true',
58 'IgnoreAllDefaultLibraries': 'true', 58 'IgnoreAllDefaultLibraries': 'true',
59 'OptimizeForWindows98': '1', 59 'OptimizeForWindows98': '1',
60 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 60 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
61 'conditions': [ 61 'AdditionalDependencies': [
Mark Mentovai 2011/03/17 20:43:42 Did you confirm whether this change results in a m
RN 2011/03/18 09:34:24 I didn't notice a substantial change (maybe saves
62 ['MSVS_VERSION=="2010"', { 62 'shlwapi.lib',
63 'AdditionalDependencies': [ 63 'setupapi.lib',
64 # These two object files are included in Visual Studio 2008
65 # but not 2010.
66 # TODO(bradnelson):
67 # http://code.google.com/p/chromium/issues/detail?id=72885
68 '"$(VCInstallDir)..\\..\\Microsoft Visual Studio 9.0\\VC\\'
69 'crt\\src\\intel\\mt_lib\\memset.obj"',
70 '"$(VCInstallDir)..\\..\\Microsoft Visual Studio 9.0\\VC\\'
71 'crt\\src\\intel\\mt_lib\\P4_memset.obj"',
72 ],
73 },{
74 'AdditionalDependencies': [
75 '"$(VCInstallDir)crt\\src\\intel\\mt_lib\\memset.obj"',
76 '"$(VCInstallDir)crt\\src\\intel\\mt_lib\\P4_memset.obj"',
77 ],
78 }],
79 ], 64 ],
80 }, 65 },
81 'VCManifestTool': { 66 'VCManifestTool': {
82 'AdditionalManifestFiles': [ 67 'AdditionalManifestFiles': [
83 '$(ProjectDir)\\mini_installer\\mini_installer.exe.manifest', 68 '$(ProjectDir)\\mini_installer\\mini_installer.exe.manifest',
84 ], 69 ],
85 }, 70 },
86 }, 71 },
87 'configurations': { 72 'configurations': {
88 'Debug_Base': { 73 'Debug_Base': {
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 }, 220 },
236 }], 221 }],
237 ], 222 ],
238 } 223 }
239 224
240 # Local Variables: 225 # Local Variables:
241 # tab-width:2 226 # tab-width:2
242 # indent-tabs-mode:nil 227 # indent-tabs-mode:nil
243 # End: 228 # End:
244 # vim: set expandtab tabstop=2 shiftwidth=2: 229 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698