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

Side by Side Diff: build/common.gypi

Issue 9699119: Fix a typo in the comment regarding /MT vs /MD (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 # Variables expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 1106 matching lines...) Expand 10 before | Expand all | Expand 10 after
1117 'enable_wexit_time_destructors%': '<(enable_wexit_time_destructors)', 1117 'enable_wexit_time_destructors%': '<(enable_wexit_time_destructors)',
1118 1118
1119 # Only used by Windows build for now. Can be used to build into a 1119 # Only used by Windows build for now. Can be used to build into a
1120 # differet output directory, e.g., a build_dir_prefix of VS2010_ would 1120 # differet output directory, e.g., a build_dir_prefix of VS2010_ would
1121 # output files in src/build/VS2010_{Debug,Release}. 1121 # output files in src/build/VS2010_{Debug,Release}.
1122 'build_dir_prefix%': '', 1122 'build_dir_prefix%': '',
1123 1123
1124 'conditions': [ 1124 'conditions': [
1125 ['OS=="win" and component=="shared_library"', { 1125 ['OS=="win" and component=="shared_library"', {
1126 # See http://msdn.microsoft.com/en-us/library/aa652367.aspx 1126 # See http://msdn.microsoft.com/en-us/library/aa652367.aspx
1127 'win_release_RuntimeLibrary%': '2', # 2 = /MT (nondebug DLL) 1127 'win_release_RuntimeLibrary%': '2', # 2 = /MD (nondebug DLL)
1128 'win_debug_RuntimeLibrary%': '3', # 3 = /MTd (debug DLL) 1128 'win_debug_RuntimeLibrary%': '3', # 3 = /MDd (debug DLL)
1129 }, { 1129 }, {
1130 # See http://msdn.microsoft.com/en-us/library/aa652367.aspx 1130 # See http://msdn.microsoft.com/en-us/library/aa652367.aspx
1131 'win_release_RuntimeLibrary%': '0', # 0 = /MT (nondebug static) 1131 'win_release_RuntimeLibrary%': '0', # 0 = /MT (nondebug static)
1132 'win_debug_RuntimeLibrary%': '1', # 1 = /MTd (debug static) 1132 'win_debug_RuntimeLibrary%': '1', # 1 = /MTd (debug static)
1133 }], 1133 }],
1134 ], 1134 ],
1135 }, 1135 },
1136 'conditions': [ 1136 'conditions': [
1137 ['OS=="win" and "<(msbuild_toolset)"!=""', { 1137 ['OS=="win" and "<(msbuild_toolset)"!=""', {
1138 'msbuild_toolset': '<(msbuild_toolset)', 1138 'msbuild_toolset': '<(msbuild_toolset)',
(...skipping 1776 matching lines...) Expand 10 before | Expand all | Expand 10 after
2915 # settings in target dicts. SYMROOT is a special case, because many other 2915 # settings in target dicts. SYMROOT is a special case, because many other
2916 # Xcode variables depend on it, including variables such as 2916 # Xcode variables depend on it, including variables such as
2917 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 2917 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
2918 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 2918 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
2919 # files to appear (when present) in the UI as actual files and not red 2919 # files to appear (when present) in the UI as actual files and not red
2920 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 2920 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
2921 # and therefore SYMROOT, needs to be set at the project level. 2921 # and therefore SYMROOT, needs to be set at the project level.
2922 'SYMROOT': '<(DEPTH)/xcodebuild', 2922 'SYMROOT': '<(DEPTH)/xcodebuild',
2923 }, 2923 },
2924 } 2924 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698