| 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 'conditions': [ | 10 'conditions': [ |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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)', |
| 114 '<(branding_dir)/BRANDING', | 115 '<(branding_dir)/BRANDING', |
| 115 ], | 116 ], |
| 116 'outputs': [ | 117 'outputs': [ |
| 117 '<(INTERMEDIATE_DIR)/mini_installer_exe_version.rc', | 118 '<(INTERMEDIATE_DIR)/mini_installer_exe_version.rc', |
| 118 ], | 119 ], |
| 119 'dependencies': [ | |
| 120 '../../build/util/build_util.gyp:lastchange', | |
| 121 ], | |
| 122 'action': [ | 120 'action': [ |
| 123 'python', '<(version_py)', | 121 'python', '<(version_py)', |
| 124 '-f', '<(version_path)', | 122 '-f', '<(version_path)', |
| 125 '-f', '<(lastchange_path)', | 123 '-f', '<(lastchange_path)', |
| 126 '-f', '<(branding_dir)/BRANDING', | 124 '-f', '<(branding_dir)/BRANDING', |
| 127 '<(template_input_path)', | 125 '<(template_input_path)', |
| 128 '<@(_outputs)', | 126 '<@(_outputs)', |
| 129 ], | 127 ], |
| 130 'process_outputs_as_sources': 1, | 128 'process_outputs_as_sources': 1, |
| 131 'message': 'Generating version information' | 129 'message': 'Generating version information' |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 }, | 262 }, |
| 265 }], | 263 }], |
| 266 ], | 264 ], |
| 267 } | 265 } |
| 268 | 266 |
| 269 # Local Variables: | 267 # Local Variables: |
| 270 # tab-width:2 | 268 # tab-width:2 |
| 271 # indent-tabs-mode:nil | 269 # indent-tabs-mode:nil |
| 272 # End: | 270 # End: |
| 273 # vim: set expandtab tabstop=2 shiftwidth=2: | 271 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |