OLD | NEW |
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 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
441 '_WIN32_WINNT=0x0600', | 441 '_WIN32_WINNT=0x0600', |
442 'WINVER=0x0600', | 442 'WINVER=0x0600', |
443 'WIN32', | 443 'WIN32', |
444 '_WINDOWS', | 444 '_WINDOWS', |
445 '_HAS_EXCEPTIONS=0', | 445 '_HAS_EXCEPTIONS=0', |
446 'NOMINMAX', | 446 'NOMINMAX', |
447 '_CRT_RAND_S', | 447 '_CRT_RAND_S', |
448 'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS', | 448 'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS', |
449 'WIN32_LEAN_AND_MEAN', | 449 'WIN32_LEAN_AND_MEAN', |
450 '_SECURE_ATL', | 450 '_SECURE_ATL', |
451 '_HAS_TR1=1', | 451 '_HAS_TR1=0', |
452 ], | 452 ], |
453 'include_dirs': [ | 453 'include_dirs': [ |
454 '<(DEPTH)/third_party/platformsdk_win2008_6_1/files/Include', | 454 '<(DEPTH)/third_party/platformsdk_win2008_6_1/files/Include', |
455 '$(VSInstallDir)/VC/atlmfc/include', | 455 '$(VSInstallDir)/VC/atlmfc/include', |
456 ], | 456 ], |
457 'msvs_cygwin_dirs': ['../third_party/cygwin'], | 457 'msvs_cygwin_dirs': ['../third_party/cygwin'], |
458 'msvs_disabled_warnings': [4396, 4503, 4819], | 458 'msvs_disabled_warnings': [4396, 4503, 4819], |
459 'msvs_settings': { | 459 'msvs_settings': { |
460 'VCCLCompilerTool': { | 460 'VCCLCompilerTool': { |
461 'MinimalRebuild': 'false', | 461 'MinimalRebuild': 'false', |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
539 # settings in target dicts. SYMROOT is a special case, because many other | 539 # settings in target dicts. SYMROOT is a special case, because many other |
540 # Xcode variables depend on it, including variables such as | 540 # Xcode variables depend on it, including variables such as |
541 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 541 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
542 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 542 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
543 # files to appear (when present) in the UI as actual files and not red | 543 # files to appear (when present) in the UI as actual files and not red |
544 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 544 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
545 # and therefore SYMROOT, needs to be set at the project level. | 545 # and therefore SYMROOT, needs to be set at the project level. |
546 'SYMROOT': '<(DEPTH)/xcodebuild', | 546 'SYMROOT': '<(DEPTH)/xcodebuild', |
547 }, | 547 }, |
548 } | 548 } |
OLD | NEW |