diff options
author | thakis <thakis@chromium.org> | 2015-09-23 19:48:34 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-09-24 02:49:11 +0000 |
commit | c780c285d08d7750a21c749c9553b059a48ef249 (patch) | |
tree | 84729301195ab4fca0f45257889edecc55d7d5ae | |
parent | 957c128fa9674eb3ed533ca85e5f36b88fac768d (diff) | |
download | chromium_src-c780c285d08d7750a21c749c9553b059a48ef249.zip chromium_src-c780c285d08d7750a21c749c9553b059a48ef249.tar.gz chromium_src-c780c285d08d7750a21c749c9553b059a48ef249.tar.bz2 |
Remove ImportLibrary lines from gyp files.
ninja's MSVS emulation doesn't emulate these properties, so they haven't had
an effect since we switched to ninja. No behavior change.
BUG=535330
Review URL: https://codereview.chromium.org/1367823002
Cr-Commit-Position: refs/heads/master@{#350446}
-rw-r--r-- | build/common.gypi | 1 | ||||
-rw-r--r-- | chrome/chrome_dll.gypi | 1 | ||||
-rw-r--r-- | chrome/chrome_exe.gypi | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/build/common.gypi b/build/common.gypi index a18d3a3..f2f0e76 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -5714,7 +5714,6 @@ ], 'GenerateDebugInformation': 'true', 'MapFileName': '$(OutDir)\\$(TargetName).map', - 'ImportLibrary': '$(OutDir)\\lib\\$(TargetName).lib', 'FixedBaseAddress': '1', # SubSystem values: # 0 == not set diff --git a/chrome/chrome_dll.gypi b/chrome/chrome_dll.gypi index f9ed3d0..d246635 100644 --- a/chrome/chrome_dll.gypi +++ b/chrome/chrome_dll.gypi @@ -156,7 +156,6 @@ }, 'msvs_settings': { 'VCLinkerTool': { - 'ImportLibrary': '$(OutDir)\\lib\\chrome_dll.lib', # Set /SUBSYSTEM:WINDOWS for chrome.dll (for consistency). 'SubSystem': '2', 'conditions': [ diff --git a/chrome/chrome_exe.gypi b/chrome/chrome_exe.gypi index 54d5a80..7d120d1 100644 --- a/chrome/chrome_exe.gypi +++ b/chrome/chrome_exe.gypi @@ -435,7 +435,6 @@ ], 'msvs_settings': { 'VCLinkerTool': { - 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib', 'OutputFile': '$(OutDir)\\initialexe\\chrome.exe', 'DelayLoadDLLs': [ 'dbghelp.dll', |