OLD | NEW |
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': '<(DEPTH)/build/util/LASTCHANGE', | 5 'lastchange_path': '<(DEPTH)/build/util/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 'mini_installer_internal_deps%': 0, | 9 'mini_installer_internal_deps%': 0, |
10 'mini_installer_official_deps%': 0, | 10 'mini_installer_official_deps%': 0, |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 'DelayLoadDLLs': [], | 63 'DelayLoadDLLs': [], |
64 'EntryPointSymbol': 'MainEntryPoint', | 64 'EntryPointSymbol': 'MainEntryPoint', |
65 'GenerateMapFile': 'true', | 65 'GenerateMapFile': 'true', |
66 'IgnoreAllDefaultLibraries': 'true', | 66 'IgnoreAllDefaultLibraries': 'true', |
67 'OptimizeForWindows98': '1', | 67 'OptimizeForWindows98': '1', |
68 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 68 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
69 'AdditionalDependencies': [ | 69 'AdditionalDependencies': [ |
70 'shlwapi.lib', | 70 'shlwapi.lib', |
71 'setupapi.lib', | 71 'setupapi.lib', |
72 ], | 72 ], |
73 'conditions': [ | |
74 ['MSVS_VERSION=="2005e"', { | |
75 'AdditionalDependencies': [ # Must explicitly link in VC2005E | |
76 'advapi32.lib', | |
77 'shell32.lib', | |
78 ], | |
79 }], | |
80 ], | |
81 }, | 73 }, |
82 'VCManifestTool': { | 74 'VCManifestTool': { |
83 'AdditionalManifestFiles': [ | 75 'AdditionalManifestFiles': [ |
84 '$(ProjectDir)\\mini_installer\\mini_installer.exe.manifest', | 76 '$(ProjectDir)\\mini_installer\\mini_installer.exe.manifest', |
85 ], | 77 ], |
86 }, | 78 }, |
87 }, | 79 }, |
88 'configurations': { | 80 'configurations': { |
89 'Debug_Base': { | 81 'Debug_Base': { |
90 'msvs_settings': { | 82 'msvs_settings': { |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
291 'variables': { | 283 'variables': { |
292 'branding_dir': '../app/theme/google_chrome', | 284 'branding_dir': '../app/theme/google_chrome', |
293 }, | 285 }, |
294 }, { # else branding!="Chrome" | 286 }, { # else branding!="Chrome" |
295 'variables': { | 287 'variables': { |
296 'branding_dir': '../app/theme/chromium', | 288 'branding_dir': '../app/theme/chromium', |
297 }, | 289 }, |
298 }], | 290 }], |
299 ], | 291 ], |
300 } | 292 } |
OLD | NEW |