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

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

Issue 19800003: Output mini_installer_exe_version.rc to PRODUCT_DIR (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 5 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
« no previous file with comments | « no previous file | chrome/tools/build/win/FILES.cfg » ('j') | 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': '<(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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 'variables': { 125 'variables': {
126 'template_input_path': 'mini_installer/mini_installer_exe_version. rc.version', 126 'template_input_path': 'mini_installer/mini_installer_exe_version. rc.version',
127 }, 127 },
128 'inputs': [ 128 'inputs': [
129 '<(template_input_path)', 129 '<(template_input_path)',
130 '<(version_path)', 130 '<(version_path)',
131 '<(lastchange_path)', 131 '<(lastchange_path)',
132 '<(branding_dir)/BRANDING', 132 '<(branding_dir)/BRANDING',
133 ], 133 ],
134 'outputs': [ 134 'outputs': [
135 '<(INTERMEDIATE_DIR)/mini_installer_exe_version.rc', 135 '<(PRODUCT_DIR)/mini_installer_exe_version.rc',
136 ], 136 ],
137 'action': [ 137 'action': [
138 'python', '<(version_py)', 138 'python', '<(version_py)',
139 '-f', '<(version_path)', 139 '-f', '<(version_path)',
140 '-f', '<(lastchange_path)', 140 '-f', '<(lastchange_path)',
141 '-f', '<(branding_dir)/BRANDING', 141 '-f', '<(branding_dir)/BRANDING',
142 '<(template_input_path)', 142 '<(template_input_path)',
143 '<@(_outputs)', 143 '<@(_outputs)',
144 ], 144 ],
145 'process_outputs_as_sources': 1, 145 'process_outputs_as_sources': 1,
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 'variables': { 293 'variables': {
294 'branding_dir': '../app/theme/google_chrome', 294 'branding_dir': '../app/theme/google_chrome',
295 }, 295 },
296 }, { # else branding!="Chrome" 296 }, { # else branding!="Chrome"
297 'variables': { 297 'variables': {
298 'branding_dir': '../app/theme/chromium', 298 'branding_dir': '../app/theme/chromium',
299 }, 299 },
300 }], 300 }],
301 ], 301 ],
302 } 302 }
OLDNEW
« no previous file with comments | « no previous file | chrome/tools/build/win/FILES.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698