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

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

Issue 579014: Make LASTCHANGE work properly for make build. (Closed)
Patch Set: Created 10 years, 10 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
« no previous file with comments | « chrome/installer/installer.gyp ('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 'conditions': [ 10 'conditions': [
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 'rules': [ 104 'rules': [
105 { 105 {
106 'rule_name': 'mini_installer_version', 106 'rule_name': 'mini_installer_version',
107 'extension': 'version', 107 'extension': 'version',
108 'variables': { 108 'variables': {
109 'template_input_path': 'mini_installer/mini_installer_exe_version. rc.version', 109 'template_input_path': 'mini_installer/mini_installer_exe_version. rc.version',
110 }, 110 },
111 'inputs': [ 111 'inputs': [
112 '<(template_input_path)', 112 '<(template_input_path)',
113 '<(version_path)', 113 '<(version_path)',
114 '<(lastchange_path)',
115 '<(branding_dir)/BRANDING', 114 '<(branding_dir)/BRANDING',
116 ], 115 ],
117 'outputs': [ 116 'outputs': [
118 '<(INTERMEDIATE_DIR)/mini_installer_exe_version.rc', 117 '<(INTERMEDIATE_DIR)/mini_installer_exe_version.rc',
119 ], 118 ],
119 'dependencies': [
120 '../../build/util/build_util.gyp:lastchange',
121 ],
120 'action': [ 122 'action': [
121 'python', '<(version_py)', 123 'python', '<(version_py)',
122 '-f', '<(version_path)', 124 '-f', '<(version_path)',
123 '-f', '<(lastchange_path)', 125 '-f', '<(lastchange_path)',
124 '-f', '<(branding_dir)/BRANDING', 126 '-f', '<(branding_dir)/BRANDING',
125 '<(template_input_path)', 127 '<(template_input_path)',
126 '<@(_outputs)', 128 '<@(_outputs)',
127 ], 129 ],
128 'process_outputs_as_sources': 1, 130 'process_outputs_as_sources': 1,
129 'message': 'Generating version information' 131 'message': 'Generating version information'
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 }, 264 },
263 }], 265 }],
264 ], 266 ],
265 } 267 }
266 268
267 # Local Variables: 269 # Local Variables:
268 # tab-width:2 270 # tab-width:2
269 # indent-tabs-mode:nil 271 # indent-tabs-mode:nil
270 # End: 272 # End:
271 # vim: set expandtab tabstop=2 shiftwidth=2: 273 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « chrome/installer/installer.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698