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

Side by Side Diff: build/common.gypi

Issue 115977: Enable TR1 in windows build for gmock's use in VS2008 SP1. (Closed)
Patch Set: Adding essential.vsprops. Created 11 years, 6 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
« no previous file with comments | « no previous file | build/internal/essential.vsprops » ('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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 { 5 {
6 'variables': { 6 'variables': {
7 # .gyp files should set chromium_code to 1 if they build Chromium-specific 7 # .gyp files should set chromium_code to 1 if they build Chromium-specific
8 # code, as opposed to external code. This variable is used to control 8 # code, as opposed to external code. This variable is used to control
9 # such things as the set of warnings to enable, and whether warnings are 9 # such things as the set of warnings to enable, and whether warnings are
10 # treated as errors. 10 # treated as errors.
(...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 '_WIN32_WINNT=0x0600', 403 '_WIN32_WINNT=0x0600',
404 'WINVER=0x0600', 404 'WINVER=0x0600',
405 'WIN32', 405 'WIN32',
406 '_WINDOWS', 406 '_WINDOWS',
407 '_HAS_EXCEPTIONS=0', 407 '_HAS_EXCEPTIONS=0',
408 'NOMINMAX', 408 'NOMINMAX',
409 '_CRT_RAND_S', 409 '_CRT_RAND_S',
410 'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS', 410 'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
411 'WIN32_LEAN_AND_MEAN', 411 'WIN32_LEAN_AND_MEAN',
412 '_SECURE_ATL', 412 '_SECURE_ATL',
413 '_HAS_TR1=0', 413 '_HAS_TR1=1',
414 ], 414 ],
415 'include_dirs': [ 415 'include_dirs': [
416 '<(DEPTH)/third_party/platformsdk_win2008_6_1/files/Include', 416 '<(DEPTH)/third_party/platformsdk_win2008_6_1/files/Include',
417 '$(VSInstallDir)/VC/atlmfc/include', 417 '$(VSInstallDir)/VC/atlmfc/include',
418 ], 418 ],
419 'msvs_cygwin_dirs': ['../third_party/cygwin'], 419 'msvs_cygwin_dirs': ['../third_party/cygwin'],
420 'msvs_disabled_warnings': [4396, 4503, 4819], 420 'msvs_disabled_warnings': [4396, 4503, 4819],
421 'msvs_settings': { 421 'msvs_settings': {
422 'VCCLCompilerTool': { 422 'VCCLCompilerTool': {
423 'MinimalRebuild': 'false', 423 'MinimalRebuild': 'false',
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
497 # settings in target dicts. SYMROOT is a special case, because many other 497 # settings in target dicts. SYMROOT is a special case, because many other
498 # Xcode variables depend on it, including variables such as 498 # Xcode variables depend on it, including variables such as
499 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 499 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
500 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 500 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
501 # files to appear (when present) in the UI as actual files and not red 501 # files to appear (when present) in the UI as actual files and not red
502 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 502 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
503 # and therefore SYMROOT, needs to be set at the project level. 503 # and therefore SYMROOT, needs to be set at the project level.
504 'SYMROOT': '<(DEPTH)/xcodebuild', 504 'SYMROOT': '<(DEPTH)/xcodebuild',
505 }, 505 },
506 } 506 }
OLDNEW
« no previous file with comments | « no previous file | build/internal/essential.vsprops » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698