diff options
author | apatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-28 23:02:22 +0000 |
---|---|---|
committer | apatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-28 23:02:22 +0000 |
commit | dcfc4dd555f18663899e82ee4ae0d99a7198ec5f (patch) | |
tree | 92574ea39fe5728745fd79a00a2d9b36a5e420bc /chrome | |
parent | b1c504c1d1ee61db9a77a606e0f93dd7a165971d (diff) | |
download | chromium_src-dcfc4dd555f18663899e82ee4ae0d99a7198ec5f.zip chromium_src-dcfc4dd555f18663899e82ee4ae0d99a7198ec5f.tar.gz chromium_src-dcfc4dd555f18663899e82ee4ae0d99a7198ec5f.tar.bz2 |
Touch extracted D3DX9 dll in extract_d3dx9 action.
This was necessary because the Windows expand utility preserves the modification time from the archive. This lead to the extract_d3dx9 action firing repeatedly because the action output was older than the input.
TEST=try
BUG=none
Review URL: http://codereview.chromium.org/3067008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54058 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/chrome.gyp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp index 5ea6dd5..e9d737cf 100644 --- a/chrome/chrome.gyp +++ b/chrome/chrome.gyp @@ -739,9 +739,10 @@ '<(PRODUCT_DIR)/<(output)', ], 'action': [ - 'expand', + 'python', + '../build/extract_from_cab.py', '..\\third_party\\directxsdk\\files\\Redist\\<(input)', - '-F:<(output)', + '<(output)', '<(PRODUCT_DIR)', ], }, |