diff options
Diffstat (limited to 'remoting/remoting.gyp')
-rw-r--r-- | remoting/remoting.gyp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/remoting/remoting.gyp b/remoting/remoting.gyp index d0009f6..7597eb0 100644 --- a/remoting/remoting.gyp +++ b/remoting/remoting.gyp @@ -1702,11 +1702,12 @@ ], # end of 'targets' }], # 'OS=="win"' - # The host installation is generated only if WiX is available. If - # component build is used the produced installation will not work due to - # missing DLLs. We build it anyway to make sure the GYP scripts are executed - # by the bots. - ['OS == "win" and wix_exists == "True" and sas_dll_exists == "True"', { + # The host installation is generated only if WiX is available and when + # building a non-component build. WiX does not provide a easy way to + # include all DLLs imported by the installed binaries, so supporting + # the component build becomes a burden. + ['OS == "win" and component != "shared_library" and wix_exists == "True" \ + and sas_dll_exists == "True"', { 'targets': [ { 'target_name': 'remoting_host_installation', |