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

Side by Side Diff: build/common.gypi

Issue 11190060: Move NTDDI_VERSION define to common.gypi. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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 | win8/delegate_execute/delegate_execute.gyp » ('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 1687 matching lines...) Expand 10 before | Expand all | Expand 10 after
1698 } 1698 }
1699 } 1699 }
1700 }], # OS==win 1700 }], # OS==win
1701 ], # conditions for coverage 1701 ], # conditions for coverage
1702 }], # coverage!=0 1702 }], # coverage!=0
1703 ['OS=="win"', { 1703 ['OS=="win"', {
1704 'defines': [ 1704 'defines': [
1705 '__STD_C', 1705 '__STD_C',
1706 '_CRT_SECURE_NO_DEPRECATE', 1706 '_CRT_SECURE_NO_DEPRECATE',
1707 '_SCL_SECURE_NO_DEPRECATE', 1707 '_SCL_SECURE_NO_DEPRECATE',
1708 # This define is required to pull in the new Win8 interfaces from
1709 # system headers like ShObjIdl.h.
1710 'NTDDI_VERSION=0x06020000',
1708 ], 1711 ],
1709 'include_dirs': [ 1712 'include_dirs': [
1710 '<(DEPTH)/third_party/wtl/include', 1713 '<(DEPTH)/third_party/wtl/include',
1711 ], 1714 ],
1712 'conditions': [ 1715 'conditions': [
1713 ['win_z7!=0', { 1716 ['win_z7!=0', {
1714 'msvs_settings': { 1717 'msvs_settings': {
1715 # Generates debug info when win_z7=1 1718 # Generates debug info when win_z7=1
1716 # even if fastbuild=1 (that makes GenerateDebugInformation false). 1719 # even if fastbuild=1 (that makes GenerateDebugInformation false).
1717 'VCLinkerTool': { 1720 'VCLinkerTool': {
(...skipping 1940 matching lines...) Expand 10 before | Expand all | Expand 10 after
3658 # settings in target dicts. SYMROOT is a special case, because many other 3661 # settings in target dicts. SYMROOT is a special case, because many other
3659 # Xcode variables depend on it, including variables such as 3662 # Xcode variables depend on it, including variables such as
3660 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 3663 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
3661 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 3664 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
3662 # files to appear (when present) in the UI as actual files and not red 3665 # files to appear (when present) in the UI as actual files and not red
3663 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 3666 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
3664 # and therefore SYMROOT, needs to be set at the project level. 3667 # and therefore SYMROOT, needs to be set at the project level.
3665 'SYMROOT': '<(DEPTH)/xcodebuild', 3668 'SYMROOT': '<(DEPTH)/xcodebuild',
3666 }, 3669 },
3667 } 3670 }
OLDNEW
« no previous file with comments | « no previous file | win8/delegate_execute/delegate_execute.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698