diff options
author | timurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-16 15:22:16 +0000 |
---|---|---|
committer | timurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-16 15:22:16 +0000 |
commit | 49e8e0211a13d15d2ee3eb971c88bfdcaee8c4aa (patch) | |
tree | bffc13a7000ec8c7b9a5654d88ff992e784ffc36 /build | |
parent | 9d26d4281a4d5dc417b2c3e11fd0ab496d0e1d1c (diff) | |
download | chromium_src-49e8e0211a13d15d2ee3eb971c88bfdcaee8c4aa.zip chromium_src-49e8e0211a13d15d2ee3eb971c88bfdcaee8c4aa.tar.gz chromium_src-49e8e0211a13d15d2ee3eb971c88bfdcaee8c4aa.tar.bz2 |
Fix a typo in the comment regarding /MT vs /MD
Review URL: http://codereview.chromium.org/9699119
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@127165 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/common.gypi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/common.gypi b/build/common.gypi index 6b3dc70..54e462c8 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -1124,8 +1124,8 @@ 'conditions': [ ['OS=="win" and component=="shared_library"', { # See http://msdn.microsoft.com/en-us/library/aa652367.aspx - 'win_release_RuntimeLibrary%': '2', # 2 = /MT (nondebug DLL) - 'win_debug_RuntimeLibrary%': '3', # 3 = /MTd (debug DLL) + 'win_release_RuntimeLibrary%': '2', # 2 = /MD (nondebug DLL) + 'win_debug_RuntimeLibrary%': '3', # 3 = /MDd (debug DLL) }, { # See http://msdn.microsoft.com/en-us/library/aa652367.aspx 'win_release_RuntimeLibrary%': '0', # 0 = /MT (nondebug static) |