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 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
505 '_HAS_TR1=0', | 505 '_HAS_TR1=0', |
506 ], | 506 ], |
507 'msvs_system_include_dirs': [ | 507 'msvs_system_include_dirs': [ |
508 '<(DEPTH)/third_party/platformsdk_win2008_6_1/files/Include', | 508 '<(DEPTH)/third_party/platformsdk_win2008_6_1/files/Include', |
509 '$(VSInstallDir)/VC/atlmfc/include', | 509 '$(VSInstallDir)/VC/atlmfc/include', |
510 ], | 510 ], |
511 'msvs_cygwin_dirs': ['../third_party/cygwin'], | 511 'msvs_cygwin_dirs': ['../third_party/cygwin'], |
512 'msvs_disabled_warnings': [4396, 4503, 4819], | 512 'msvs_disabled_warnings': [4396, 4503, 4819], |
513 'msvs_settings': { | 513 'msvs_settings': { |
514 'VCCLCompilerTool': { | 514 'VCCLCompilerTool': { |
515 'AdditionalOptions': '/MP', | |
516 'MinimalRebuild': 'false', | 515 'MinimalRebuild': 'false', |
517 'ExceptionHandling': '0', | 516 'ExceptionHandling': '0', |
518 'BufferSecurityCheck': 'true', | 517 'BufferSecurityCheck': 'true', |
519 'EnableFunctionLevelLinking': 'true', | 518 'EnableFunctionLevelLinking': 'true', |
520 'RuntimeTypeInfo': 'false', | 519 'RuntimeTypeInfo': 'false', |
521 'WarningLevel': '3', | 520 'WarningLevel': '3', |
522 'WarnAsError': 'true', | 521 'WarnAsError': 'true', |
523 'DebugInformationFormat': '3', | 522 'DebugInformationFormat': '3', |
524 }, | 523 }, |
525 'VCLibrarianTool': { | 524 'VCLibrarianTool': { |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
610 # settings in target dicts. SYMROOT is a special case, because many other | 609 # settings in target dicts. SYMROOT is a special case, because many other |
611 # Xcode variables depend on it, including variables such as | 610 # Xcode variables depend on it, including variables such as |
612 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 611 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
613 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 612 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
614 # files to appear (when present) in the UI as actual files and not red | 613 # files to appear (when present) in the UI as actual files and not red |
615 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 614 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
616 # and therefore SYMROOT, needs to be set at the project level. | 615 # and therefore SYMROOT, needs to be set at the project level. |
617 'SYMROOT': '<(DEPTH)/xcodebuild', | 616 'SYMROOT': '<(DEPTH)/xcodebuild', |
618 }, | 617 }, |
619 } | 618 } |
OLD | NEW |