diff options
author | mmoss@google.com <mmoss@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-08 16:35:21 +0000 |
---|---|---|
committer | mmoss@google.com <mmoss@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-08 16:35:21 +0000 |
commit | 752b9f9a5dcd50720ff20cb55884d1a4ba4829d7 (patch) | |
tree | 7b41bcd0e76cd723156d69aa369dc2984e4f3bff /chrome | |
parent | bf20baad5d120449445655300ac6add8f6c6650e (diff) | |
download | chromium_src-752b9f9a5dcd50720ff20cb55884d1a4ba4829d7.zip chromium_src-752b9f9a5dcd50720ff20cb55884d1a4ba4829d7.tar.gz chromium_src-752b9f9a5dcd50720ff20cb55884d1a4ba4829d7.tar.bz2 |
Make LASTCHANGE work properly for make build.
BUG=22044
Review URL: http://codereview.chromium.org/579014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@38366 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rwxr-xr-x | chrome/chrome.gyp | 1 | ||||
-rw-r--r-- | chrome/installer/installer.gyp | 8 | ||||
-rwxr-xr-x | chrome/installer/mini_installer.gyp | 4 |
3 files changed, 9 insertions, 4 deletions
diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp index 9931fda..963bfbb 100755 --- a/chrome/chrome.gyp +++ b/chrome/chrome.gyp @@ -1402,7 +1402,6 @@ '<(template_input_path)', '<(version_path)', '<(branding_path)', - '<(lastchange_path)', ], 'outputs': [ '<(SHARED_INTERMEDIATE_DIR)/chrome_dll_version/chrome_dll_version.rc', diff --git a/chrome/installer/installer.gyp b/chrome/installer/installer.gyp index 818817d..00883543 100644 --- a/chrome/installer/installer.gyp +++ b/chrome/installer/installer.gyp @@ -224,7 +224,6 @@ 'inputs': [ '<(template_input_path)', '<(version_path)', - '<(lastchange_path)', '<(branding_dir)/BRANDING', ], 'outputs': [ @@ -238,6 +237,9 @@ '<(template_input_path)', '<@(_outputs)', ], + 'dependencies': [ + '../../build/util/build_util.gyp:lastchange', + ], 'process_outputs_as_sources': 1, 'message': 'Generating version information' }, @@ -426,7 +428,6 @@ 'inputs': [ '<(branding_dir)/BRANDING', '<(version_path)', - '<(lastchange_path)', ], 'outputs': [ '<(PRODUCT_DIR)/installer/version.txt', @@ -439,6 +440,9 @@ '-f', '<(lastchange_path)', '-o', '<@(_outputs)' ], + 'dependencies': [ + '../../build/util/build_util.gyp:lastchange', + ], }, ], }, diff --git a/chrome/installer/mini_installer.gyp b/chrome/installer/mini_installer.gyp index 0a2d79e..c81271c 100755 --- a/chrome/installer/mini_installer.gyp +++ b/chrome/installer/mini_installer.gyp @@ -111,12 +111,14 @@ 'inputs': [ '<(template_input_path)', '<(version_path)', - '<(lastchange_path)', '<(branding_dir)/BRANDING', ], 'outputs': [ '<(INTERMEDIATE_DIR)/mini_installer_exe_version.rc', ], + 'dependencies': [ + '../../build/util/build_util.gyp:lastchange', + ], 'action': [ 'python', '<(version_py)', '-f', '<(version_path)', |