Thanks guys, that helped. I closed VS, deleted the chrome/Debug
directory, then reopened the solution and rebuilt it and I no longer
had those linker warnings.
I did however hit two
other
issues afterwards, but I was able to resolve them. The first was that I
got tons of C2471 errors while building webkit.lib, e.g.:
c:\src\chromiumtrunk\src\third_party\WebKit\JavaScriptCore\wtf/Platform.h : error C2471: cannot update program database 'c:\src\chromiumtrunk\src\chrome\debug\obj\webkit\webkit\vc80.pdb'
But simply deleting chrome\Debug\obj\webkit and then building again fixed that.
The second issue was that VS refused to load the symbols for
chrome.dll from chrome_dll.pdb, insisting that "The symbol file
chrome_dll.pdb does not match the module." But based on mungflesh's
comment at
http://social.msdn.microsoft.com/forums/en-US/vsdebug/thread/86125819-426b-4794-948d-d2252f46aedf/
I just restarted VS and that fixed the problem (probably it implements
a half-baked GUID cache or something). I now can finally debug Chromium.