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

Side by Side Diff: build/common.gypi

Issue 28823003: WIP: Disable warning C4996 for Win SDK 8.1 for all (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | 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 4371 matching lines...) Expand 10 before | Expand all | Expand 10 after
4382 'FavorSizeOrSpeed': '1', 4382 'FavorSizeOrSpeed': '1',
4383 # This implies link time code generation. 4383 # This implies link time code generation.
4384 'WholeProgramOptimization': 'true', 4384 'WholeProgramOptimization': 'true',
4385 }, 4385 },
4386 }, 4386 },
4387 }, 4387 },
4388 ], 4388 ],
4389 ], 4389 ],
4390 }, 4390 },
4391 ], 4391 ],
4392 ['MSVS_VERSION=="2013"', {
scottmg 2013/10/18 16:11:57 needs 'or MSVS_VERSION=="2013e"' also. If it's mos
4393 # For using deprecated API GetVersionEx
4394 'msvs_disabled_warnings': [4996]
Will Harris 2013/10/18 11:37:57 this turns off warnings for all deprecated functio
4395 }],
4392 ['component=="static_library"', { 4396 ['component=="static_library"', {
4393 'defines': [ 4397 'defines': [
4394 '_HAS_EXCEPTIONS=0', 4398 '_HAS_EXCEPTIONS=0',
4395 ], 4399 ],
4396 }], 4400 }],
4397 ['secure_atl', { 4401 ['secure_atl', {
4398 'defines': [ 4402 'defines': [
4399 '_SECURE_ATL', 4403 '_SECURE_ATL',
4400 ], 4404 ],
4401 }], 4405 }],
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
4743 # settings in target dicts. SYMROOT is a special case, because many other 4747 # settings in target dicts. SYMROOT is a special case, because many other
4744 # Xcode variables depend on it, including variables such as 4748 # Xcode variables depend on it, including variables such as
4745 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4749 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4746 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4750 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4747 # files to appear (when present) in the UI as actual files and not red 4751 # files to appear (when present) in the UI as actual files and not red
4748 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4752 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4749 # and therefore SYMROOT, needs to be set at the project level. 4753 # and therefore SYMROOT, needs to be set at the project level.
4750 'SYMROOT': '<(DEPTH)/xcodebuild', 4754 'SYMROOT': '<(DEPTH)/xcodebuild',
4751 }, 4755 },
4752 } 4756 }
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