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

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 a5a0f13d6cdb20359e32fb8f03b03581767dcfa4..73fa44c4c3a051ff94398837e43150f26829de3f 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -1769,6 +1769,16 @@
}
}
}],
+ ['"<(GENERATOR)"=="msvs"', {
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ # Make the pdb name sane. Otherwise foo.exe and foo.dll both have
Sigurður Ásgeirsson 2012/11/08 20:45:00 nit: > 80 chars.
+ # 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