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

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

Issue 7910002: Switch on use of precompiled headers for VS 2008. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Clean up comments++ Created 9 years, 3 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
« base/time_win.cc ('K') | « build/win_precompile.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'includes': [ 10 'includes': [
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« base/time_win.cc ('K') | « build/win_precompile.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698