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

Side by Side Diff: build/common.gypi

Issue 58853015: Add define required for VS2013 ATL to target XP (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comment Created 7 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 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 2245 matching lines...) Expand 10 before | Expand all | Expand 10 after
2256 ], # conditions for coverage 2256 ], # conditions for coverage
2257 }], # coverage!=0 2257 }], # coverage!=0
2258 ['OS=="win"', { 2258 ['OS=="win"', {
2259 'defines': [ 2259 'defines': [
2260 '__STD_C', 2260 '__STD_C',
2261 '_CRT_SECURE_NO_DEPRECATE', 2261 '_CRT_SECURE_NO_DEPRECATE',
2262 '_SCL_SECURE_NO_DEPRECATE', 2262 '_SCL_SECURE_NO_DEPRECATE',
2263 # This define is required to pull in the new Win8 interfaces from 2263 # This define is required to pull in the new Win8 interfaces from
2264 # system headers like ShObjIdl.h. 2264 # system headers like ShObjIdl.h.
2265 'NTDDI_VERSION=0x06020000', 2265 'NTDDI_VERSION=0x06020000',
2266 # This is required for ATL to use XP-safe versions of its functions.
2267 '_USING_V110_SDK71_',
2266 ], 2268 ],
2267 'include_dirs': [ 2269 'include_dirs': [
2268 '<(DEPTH)/third_party/wtl/include', 2270 '<(DEPTH)/third_party/wtl/include',
2269 ], 2271 ],
2270 'conditions': [ 2272 'conditions': [
2271 ['win_z7!=0', { 2273 ['win_z7!=0', {
2272 'msvs_settings': { 2274 'msvs_settings': {
2273 # Generates debug info when win_z7=1 2275 # Generates debug info when win_z7=1
2274 # even if fastbuild=1 (that makes GenerateDebugInformation false). 2276 # even if fastbuild=1 (that makes GenerateDebugInformation false).
2275 'VCLinkerTool': { 2277 'VCLinkerTool': {
(...skipping 2424 matching lines...) Expand 10 before | Expand all | Expand 10 after
4700 # settings in target dicts. SYMROOT is a special case, because many other 4702 # settings in target dicts. SYMROOT is a special case, because many other
4701 # Xcode variables depend on it, including variables such as 4703 # Xcode variables depend on it, including variables such as
4702 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4704 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4703 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4705 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4704 # files to appear (when present) in the UI as actual files and not red 4706 # files to appear (when present) in the UI as actual files and not red
4705 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4707 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4706 # and therefore SYMROOT, needs to be set at the project level. 4708 # and therefore SYMROOT, needs to be set at the project level.
4707 'SYMROOT': '<(DEPTH)/xcodebuild', 4709 'SYMROOT': '<(DEPTH)/xcodebuild',
4708 }, 4710 },
4709 } 4711 }
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