| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 ], | 72 ], |
| 73 'conditions': [ | 73 'conditions': [ |
| 74 ['MSVS_VERSION=="2005e"', { | 74 ['MSVS_VERSION=="2005e"', { |
| 75 'AdditionalDependencies': [ # Must explicitly link in VC2005E | 75 'AdditionalDependencies': [ # Must explicitly link in VC2005E |
| 76 'advapi32.lib', | 76 'advapi32.lib', |
| 77 'shell32.lib', | 77 'shell32.lib', |
| 78 ], | 78 ], |
| 79 }], | 79 }], |
| 80 ], | 80 ], |
| 81 }, | 81 }, |
| 82 'VCManifestTool': { |
| 83 'AdditionalManifestFiles': [ |
| 84 '$(ProjectDir)\\mini_installer\\mini_installer.exe.manifest', |
| 85 ], |
| 86 }, |
| 82 }, | 87 }, |
| 83 'configurations': { | 88 'configurations': { |
| 84 'Debug_Base': { | 89 'Debug_Base': { |
| 85 'msvs_settings': { | 90 'msvs_settings': { |
| 86 'VCCLCompilerTool': { | 91 'VCCLCompilerTool': { |
| 87 'BasicRuntimeChecks': '0', | 92 'BasicRuntimeChecks': '0', |
| 88 'BufferSecurityCheck': 'false', | 93 'BufferSecurityCheck': 'false', |
| 89 'ExceptionHandling': '0', | 94 'ExceptionHandling': '0', |
| 90 }, | 95 }, |
| 91 'VCLinkerTool': { | 96 'VCLinkerTool': { |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 { | 178 { |
| 174 'target_name': 'mini_installer', | 179 'target_name': 'mini_installer', |
| 175 'type': 'executable', | 180 'type': 'executable', |
| 176 | 181 |
| 177 # Disable precompiled headers for this project, to avoid | 182 # Disable precompiled headers for this project, to avoid |
| 178 # linker errors when building with VS 2008. | 183 # linker errors when building with VS 2008. |
| 179 'msvs_precompiled_header': '', | 184 'msvs_precompiled_header': '', |
| 180 'msvs_precompiled_source': '', | 185 'msvs_precompiled_source': '', |
| 181 | 186 |
| 182 'sources': [ | 187 'sources': [ |
| 183 '../app/additional.manifest', | |
| 184 'mini_installer/chrome.release', | 188 'mini_installer/chrome.release', |
| 185 'mini_installer/chrome_appid.cc', | 189 'mini_installer/chrome_appid.cc', |
| 186 ], | 190 ], |
| 187 'msvs_settings': { | |
| 188 'VCManifestTool': { | |
| 189 'AdditionalManifestFiles': [ | |
| 190 '$(ProjectDir)\\..\\app\\additional.manifest', | |
| 191 ], | |
| 192 }, | |
| 193 }, | |
| 194 'rules': [ | 191 'rules': [ |
| 195 { | 192 { |
| 196 'rule_name': 'installer_archive', | 193 'rule_name': 'installer_archive', |
| 197 'extension': 'release', | 194 'extension': 'release', |
| 198 'variables': { | 195 'variables': { |
| 199 'create_installer_archive_py_path': | 196 'create_installer_archive_py_path': |
| 200 '../tools/build/win/create_installer_archive.py', | 197 '../tools/build/win/create_installer_archive.py', |
| 201 }, | 198 }, |
| 202 'conditions': [ | 199 'conditions': [ |
| 203 ['enable_hidpi == 1', { | 200 ['enable_hidpi == 1', { |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 'variables': { | 291 'variables': { |
| 295 'branding_dir': '../app/theme/google_chrome', | 292 'branding_dir': '../app/theme/google_chrome', |
| 296 }, | 293 }, |
| 297 }, { # else branding!="Chrome" | 294 }, { # else branding!="Chrome" |
| 298 'variables': { | 295 'variables': { |
| 299 'branding_dir': '../app/theme/chromium', | 296 'branding_dir': '../app/theme/chromium', |
| 300 }, | 297 }, |
| 301 }], | 298 }], |
| 302 ], | 299 ], |
| 303 } | 300 } |
| OLD | NEW |