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

Side by Side Diff: trunk/src/build/common.gypi

Issue 176203003: Revert 252837 "trial run of vs2013 with iterator debugging off t..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 10 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 | trunk/src/build/gyp_chromium » ('j') | 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 2036 matching lines...) Expand 10 before | Expand all | Expand 10 after
2047 2047
2048 # See http://msdn.microsoft.com/en-us/library/47238hez(VS.71).aspx 2048 # See http://msdn.microsoft.com/en-us/library/47238hez(VS.71).aspx
2049 'win_debug_InlineFunctionExpansion%': '', # empty = default, 0 = off, 2049 'win_debug_InlineFunctionExpansion%': '', # empty = default, 0 = off,
2050 'win_release_InlineFunctionExpansion%': '2', # 1 = only __inline, 2 = max 2050 'win_release_InlineFunctionExpansion%': '2', # 1 = only __inline, 2 = max
2051 2051
2052 # VS inserts quite a lot of extra checks to algorithms like 2052 # VS inserts quite a lot of extra checks to algorithms like
2053 # std::partial_sort in Debug build which make them O(N^2) 2053 # std::partial_sort in Debug build which make them O(N^2)
2054 # instead of O(N*logN). This is particularly slow under memory 2054 # instead of O(N*logN). This is particularly slow under memory
2055 # tools like ThreadSanitizer so we want it to be disablable. 2055 # tools like ThreadSanitizer so we want it to be disablable.
2056 # See http://msdn.microsoft.com/en-us/library/aa985982(v=VS.80).aspx 2056 # See http://msdn.microsoft.com/en-us/library/aa985982(v=VS.80).aspx
2057 'win_debug_disable_iterator_debugging%': '1', 2057 'win_debug_disable_iterator_debugging%': '0',
2058 2058
2059 # An application manifest fragment to declare compatibility settings for 2059 # An application manifest fragment to declare compatibility settings for
2060 # 'executable' targets. Ignored in other target type. 2060 # 'executable' targets. Ignored in other target type.
2061 'win_exe_compatibility_manifest%': 2061 'win_exe_compatibility_manifest%':
2062 '<(DEPTH)\\build\\win\\compatibility.manifest', 2062 '<(DEPTH)\\build\\win\\compatibility.manifest',
2063 2063
2064 # Set to 1 to generate external manifest instead of embedding it for 2064 # Set to 1 to generate external manifest instead of embedding it for
2065 # 'executable' target. Does nothing for other target type. This flag is 2065 # 'executable' target. Does nothing for other target type. This flag is
2066 # used to make mini_installer compatible with the component build. 2066 # used to make mini_installer compatible with the component build.
2067 # See http://crbug.com/127233 2067 # See http://crbug.com/127233
(...skipping 2966 matching lines...) Expand 10 before | Expand all | Expand 10 after
5034 # settings in target dicts. SYMROOT is a special case, because many other 5034 # settings in target dicts. SYMROOT is a special case, because many other
5035 # Xcode variables depend on it, including variables such as 5035 # Xcode variables depend on it, including variables such as
5036 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5036 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5037 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5037 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5038 # files to appear (when present) in the UI as actual files and not red 5038 # files to appear (when present) in the UI as actual files and not red
5039 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5039 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5040 # and therefore SYMROOT, needs to be set at the project level. 5040 # and therefore SYMROOT, needs to be set at the project level.
5041 'SYMROOT': '<(DEPTH)/xcodebuild', 5041 'SYMROOT': '<(DEPTH)/xcodebuild',
5042 }, 5042 },
5043 } 5043 }
OLDNEW
« no previous file with comments | « no previous file | trunk/src/build/gyp_chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698