summaryrefslogtreecommitdiffstats
path: root/win8
diff options
context:
space:
mode:
authorrobertshield@chromium.org <robertshield@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-12 02:10:53 +0000
committerrobertshield@chromium.org <robertshield@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-12 02:10:53 +0000
commite53a18b0b5e8bef623f551c2040fdc93d2b89bfc (patch)
tree05c18b60b0abd6a1d4e5c51df7bdc120189b7655 /win8
parent78a6b64783ce470c14c578b036552a0ddcdcfc97 (diff)
downloadchromium_src-e53a18b0b5e8bef623f551c2040fdc93d2b89bfc.zip
chromium_src-e53a18b0b5e8bef623f551c2040fdc93d2b89bfc.tar.gz
chromium_src-e53a18b0b5e8bef623f551c2040fdc93d2b89bfc.tar.bz2
When the Win8 script for checking the SDK has been patched succeeds, write out a beacon file to avoid rerunning the script on subsequent builds.
Also, slightly improve the SDK patch error message. BUG=127799 TEST=NONE Review URL: https://chromiumcodereview.appspot.com/10928127 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156210 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'win8')
-rw-r--r--win8/win8.gyp9
1 files changed, 7 insertions, 2 deletions
diff --git a/win8/win8.gyp b/win8/win8.gyp
index e4c9b89..2d359e0 100644
--- a/win8/win8.gyp
+++ b/win8/win8.gyp
@@ -14,6 +14,7 @@
'type': 'none',
'variables': {
'check_sdk_script': '<(DEPTH)/chrome/tools/build/win/check_sdk_patch.py',
+ 'output_path': '<(INTERMEDIATE_DIR)/check_sdk_patch',
},
'actions': [
{
@@ -25,9 +26,13 @@
'outputs': [
# This keeps the ninja build happy and provides a slightly helpful
# error messge if the sdk is missing.
- 'check_sdk_patch',
+ '<(output_path)'
],
- 'action': ['python', '<(check_sdk_script)', '<(windows_sdk_path)'],
+ 'action': ['python',
+ '<(check_sdk_script)',
+ '<(windows_sdk_path)',
+ '<(output_path)',
+ ],
},
],
},