diff options
author | robertshield@chromium.org <robertshield@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-08 01:44:50 +0000 |
---|---|---|
committer | robertshield@chromium.org <robertshield@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-08 01:44:50 +0000 |
commit | 495972babd62847cc623537adfadefe95bb728f7 (patch) | |
tree | fd66a5132fd10caa654b4a7b38ac19240e2ecc10 | |
parent | 7c26517f17c789a35c2dd81e425c30ce43521b9f (diff) | |
download | chromium_src-495972babd62847cc623537adfadefe95bb728f7.zip chromium_src-495972babd62847cc623537adfadefe95bb728f7.tar.gz chromium_src-495972babd62847cc623537adfadefe95bb728f7.tar.bz2 |
Fix problem with absolute path to Win8 SDK making GYP/Winja unhappy.
BUG=127799
TEST=Can build with a regular Win8 SDK install.
TBR=akalin
Review URL: https://chromiumcodereview.appspot.com/10917154
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@155553 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | win8/win8.gyp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win8/win8.gyp b/win8/win8.gyp index bf64b1f..a71307a0 100644 --- a/win8/win8.gyp +++ b/win8/win8.gyp @@ -19,13 +19,13 @@ { 'action_name': 'check_sdk_patch_action', 'inputs': [ - '<@(windows_sdk_path)/Include/winrt/asyncinfo.h', + '<(check_sdk_script)', ], 'outputs': [ # This keeps the ninja build happy. 'dummy', ], - 'action': ['python', '<(check_sdk_script)', '<@(windows_sdk_path)'], + 'action': ['python', '<(check_sdk_script)', '<(windows_sdk_path)'], }, ], }, |