diff options
author | alexeypa@chromium.org <alexeypa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-27 19:14:06 +0000 |
---|---|---|
committer | alexeypa@chromium.org <alexeypa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-27 19:14:06 +0000 |
commit | 740ebed036eadc0a907b52e7ea13e3bc648faacf (patch) | |
tree | 75b1cf014132359004a0e560eaa20a0b90b4ab64 /remoting/candle_and_light.py | |
parent | bec0f45539a32810d424667ef1d04d58ff9d4537 (diff) | |
download | chromium_src-740ebed036eadc0a907b52e7ea13e3bc648faacf.zip chromium_src-740ebed036eadc0a907b52e7ea13e3bc648faacf.tar.gz chromium_src-740ebed036eadc0a907b52e7ea13e3bc648faacf.tar.bz2 |
sas.dll is not included to Windows 8 SDK. Use one from from Windows 7 SDK instead.
BUG=134509
TEST=src/remoting.gyp:remoting_host_installation is buildable.
Review URL: https://chromiumcodereview.appspot.com/10673011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@144507 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/candle_and_light.py')
-rwxr-xr-x | remoting/candle_and_light.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/candle_and_light.py b/remoting/candle_and_light.py index 4416a83..1fad3e0 100755 --- a/remoting/candle_and_light.py +++ b/remoting/candle_and_light.py @@ -25,7 +25,7 @@ def main(): parser.add_option('--version', dest='version') parser.add_option('--product_dir', dest='product_dir') parser.add_option('--intermediate_dir', dest='intermediate_dir') - parser.add_option('--platformsdk_path', dest='platformsdk_path') + parser.add_option('--sas_dll_path', dest='sas_dll_path') parser.add_option('-d', dest='define_list', action='append') parser.add_option('--input', dest='input') parser.add_option('--output', dest='output') @@ -45,7 +45,7 @@ def main(): '-dVersion=%(version)s ' '-dFileSource=%(product_dir)s ' '-dIconPath=resources/chromoting.ico ' - '-dSasDllPath=%(platformsdk_path)s/redist/x86/sas.dll ' + '-dSasDllPath=%(sas_dll_path)s/sas.dll ' '%(defines)s ' ) |