Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3749)

Unified Diff: build/common.gypi

Issue 11384003: Make all pdb file names follow the same naming convention. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/chrome_dll.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index 0a32c0abbc526c4464f2d2922b1f48897eb863e7..a60cd7f733afc5d460e0cae85f743ad0ed195f99 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -1789,6 +1789,16 @@
}
}
}],
+ ['"<(GENERATOR)"=="msvs"', {
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ # Make the pdb name sane. Otherwise foo.exe and foo.dll both
+ # have foo.pdb. The ninja generator already defaults to this and
+ # can't handle the $(TargetPath) macro.
+ 'ProgramDatabaseFile': '$(TargetPath).pdb',
+ }
+ },
+ }],
], # win_z7!=0
}], # OS==win
['enable_task_manager==1', {
« no previous file with comments | « no previous file | chrome/chrome_dll.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698