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': '<(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 'includes': [ | 10 'includes': [ |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 'variables': { | 168 'variables': { |
169 'branding_dir': '../app/theme/chromium', | 169 'branding_dir': '../app/theme/chromium', |
170 }, | 170 }, |
171 }], | 171 }], |
172 ], | 172 ], |
173 }, | 173 }, |
174 'targets': [ | 174 'targets': [ |
175 { | 175 { |
176 'target_name': 'mini_installer', | 176 'target_name': 'mini_installer', |
177 'type': 'executable', | 177 'type': 'executable', |
| 178 # Disable precompiled headers for this project, to avoid |
| 179 # linker errors when building with VS 2008. |
| 180 'msvs_precompiled_header': '', |
| 181 'msvs_precompiled_source': '', |
178 'sources': [ | 182 'sources': [ |
179 'mini_installer/chrome.release', | 183 'mini_installer/chrome.release', |
180 'mini_installer/chrome_appid.cc', | 184 'mini_installer/chrome_appid.cc', |
181 ], | 185 ], |
182 'rules': [ | 186 'rules': [ |
183 { | 187 { |
184 'rule_name': 'installer_archive', | 188 'rule_name': 'installer_archive', |
185 'extension': 'release', | 189 'extension': 'release', |
186 'variables': { | 190 'variables': { |
187 'create_installer_archive_py_path': | 191 'create_installer_archive_py_path': |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 'variables': { | 232 'variables': { |
229 'branding_dir': '../app/theme/google_chrome', | 233 'branding_dir': '../app/theme/google_chrome', |
230 }, | 234 }, |
231 }, { # else branding!="Chrome" | 235 }, { # else branding!="Chrome" |
232 'variables': { | 236 'variables': { |
233 'branding_dir': '../app/theme/chromium', | 237 'branding_dir': '../app/theme/chromium', |
234 }, | 238 }, |
235 }], | 239 }], |
236 ], | 240 ], |
237 } | 241 } |
OLD | NEW |