mirror of
https://github.com/chromium/crashpad.git
synced 2025-03-09 14:06:33 +00:00
win: Fix always-rebuild of crashpad_snapshot_test_image_reader_module.dll
Ninja assumes all DLLs will have an import library generated (caused when there are any exports), but because this DLL is so simple, it does not. This makes ninja think that the target is always dirty and so it rebuilds it on every build. Fix this by telling ninja not to expect an import library. R=mark@chromium.org BUG=crashpad:1 Review URL: https://codereview.chromium.org/1346253003 .
This commit is contained in:
parent
6082aed2f2
commit
d1d341c719
@ -175,6 +175,9 @@
|
||||
'sources': [
|
||||
'win/crashpad_snapshot_test_image_reader_module.cc',
|
||||
],
|
||||
'msvs_settings': {
|
||||
'NoImportLibrary': 'true',
|
||||
},
|
||||
},
|
||||
],
|
||||
}],
|
||||
|
Loading…
x
Reference in New Issue
Block a user