| Index: pylib/gyp/msvs_emulation.py
|
| diff --git a/pylib/gyp/msvs_emulation.py b/pylib/gyp/msvs_emulation.py
|
| index d18863ac7c5e95f58dca46bc854463f31783a357..050e95c2c569ffeee49efc2e27efa94d790cac13 100644
|
| --- a/pylib/gyp/msvs_emulation.py
|
| +++ b/pylib/gyp/msvs_emulation.py
|
| @@ -407,6 +407,13 @@ class MsvsSettings(object):
|
| else:
|
| return None
|
|
|
| + def GetNoImportLibrary(self, config):
|
| + """If NoImportLibrary: true, ninja will not expect the output to include
|
| + an import library."""
|
| + config = self._TargetConfig(config)
|
| + noimplib = self._Setting(('NoImportLibrary',), config)
|
| + return noimplib == 'true'
|
| +
|
| def GetAsmflags(self, config):
|
| """Returns the flags that need to be added to ml invocations."""
|
| config = self._TargetConfig(config)
|
|
|