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

Unified Diff: build/common.gypi

Issue 159362: Adding two new windows configuration types:... (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: Created 11 years, 5 months 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/installer/mini_installer.gyp » ('j') | third_party/tcmalloc/tcmalloc.gyp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
===================================================================
--- build/common.gypi (revision 21565)
+++ build/common.gypi (working copy)
@@ -229,6 +229,50 @@
}],
],
},
+ 'conditions': [
+ [ 'OS=="win"', {
+ # TODO(bradnelson): add a gyp mechanism to make this more graceful.
+ 'Purify': {
+ 'defines': [
+ 'NDEBUG',
+ 'PURIFY',
+ ],
+ 'msvs_settings': {
+ 'VCCLCompilerTool': {
+ 'Optimization': '0',
+ 'RuntimeLibrary': '0',
+ 'BufferSecurityCheck': 'false',
+ },
+ 'VCLinkerTool': {
+ 'EnableCOMDATFolding': '1',
+ 'LinkIncremental': '1',
+ },
+ },
+ 'conditions': [
+ [ 'msvs_use_common_release', {
+ 'configuration_platform': 'Win32',
+ 'msvs_props': ['release.vsprops'],
+ }],
+ ],
+ },
+ 'Release - no tcmalloc': {
+ 'defines': [
Erik does not do reviews 2009/07/25 00:54:52 Let's add a define here that says NO_TCMALLOC. Th
+ 'NDEBUG',
+ ],
+ 'conditions': [
+ [ 'msvs_use_common_release', {
+ 'configuration_platform': 'Win32',
+ 'msvs_props': ['release.vsprops'],
+ }],
+ ],
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'LinkIncremental': '1',
+ },
+ },
+ },
+ }],
+ ],
},
},
'conditions': [
« no previous file with comments | « no previous file | chrome/installer/mini_installer.gyp » ('j') | third_party/tcmalloc/tcmalloc.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698