summaryrefslogtreecommitdiffstats
path: root/chrome_elf
diff options
context:
space:
mode:
authorscottmg <scottmg@chromium.org>2015-01-30 14:28:04 -0800
committerCommit bot <commit-bot@chromium.org>2015-01-30 22:29:07 +0000
commit0c8144233a7a379f75c6291cda49939b45e85395 (patch)
treed94d1f1e450972fd83bd88d0e6fe5756d86cfec5 /chrome_elf
parent9dd8cd76747530737ce700b21fa2e8514c07ffb7 (diff)
downloadchromium_src-0c8144233a7a379f75c6291cda49939b45e85395.zip
chromium_src-0c8144233a7a379f75c6291cda49939b45e85395.tar.gz
chromium_src-0c8144233a7a379f75c6291cda49939b45e85395.tar.bz2
Use NoImportLib: true for blacklist_test_dll_3 to avoid unnecessary rebuilding
Avoids ninja expecting an import .lib to be generated so that it doesn't continually rebuild because the import lib is "missing". To be landed after gyp roll at https://codereview.chromium.org/890043003/ lands. R=robertshield@chromium.org BUG=342974,451499 Review URL: https://codereview.chromium.org/886123002 Cr-Commit-Position: refs/heads/master@{#314008}
Diffstat (limited to 'chrome_elf')
-rw-r--r--chrome_elf/blacklist.gypi6
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome_elf/blacklist.gypi b/chrome_elf/blacklist.gypi
index 7ab5be1..50d1a26 100644
--- a/chrome_elf/blacklist.gypi
+++ b/chrome_elf/blacklist.gypi
@@ -60,6 +60,12 @@
'sources': [
'blacklist/test/blacklist_test_dll_3.cc',
],
+ 'msvs_settings': {
+ # There's no exports in this DLL, this tells ninja not to expect an
+ # import lib so that it doesn't keep rebuilding unnecessarily due to
+ # the .lib being "missing".
+ 'NoImportLibrary': 'true',
+ },
},
],
}