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 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
370 'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS', | 370 'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS', |
371 'WIN32_LEAN_AND_MEAN', | 371 'WIN32_LEAN_AND_MEAN', |
372 '_SECURE_ATL', | 372 '_SECURE_ATL', |
373 '_HAS_TR1=0', | 373 '_HAS_TR1=0', |
374 ], | 374 ], |
375 'include_dirs': [ | 375 'include_dirs': [ |
376 '<(DEPTH)/third_party/platformsdk_win2008_6_1/files/Include', | 376 '<(DEPTH)/third_party/platformsdk_win2008_6_1/files/Include', |
377 '$(VSInstallDir)/VC/atlmfc/include', | 377 '$(VSInstallDir)/VC/atlmfc/include', |
378 ], | 378 ], |
379 'msvs_cygwin_dirs': ['../third_party/cygwin'], | 379 'msvs_cygwin_dirs': ['../third_party/cygwin'], |
380 'msvs_disabled_warnings': [4503, 4819], | 380 'msvs_disabled_warnings': [4396, 4503, 4819], |
M-A Ruel
2009/05/12 16:31:59
I'd rather have it disabled only for WebCore but t
| |
381 'msvs_settings': { | 381 'msvs_settings': { |
382 'VCCLCompilerTool': { | 382 'VCCLCompilerTool': { |
383 'MinimalRebuild': 'false', | 383 'MinimalRebuild': 'false', |
384 'ExceptionHandling': '0', | 384 'ExceptionHandling': '0', |
385 'BufferSecurityCheck': 'true', | 385 'BufferSecurityCheck': 'true', |
386 'EnableFunctionLevelLinking': 'true', | 386 'EnableFunctionLevelLinking': 'true', |
387 'RuntimeTypeInfo': 'false', | 387 'RuntimeTypeInfo': 'false', |
388 'WarningLevel': '3', | 388 'WarningLevel': '3', |
389 'WarnAsError': 'true', | 389 'WarnAsError': 'true', |
390 'DebugInformationFormat': '3', | 390 'DebugInformationFormat': '3', |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
451 # settings in target dicts. SYMROOT is a special case, because many other | 451 # settings in target dicts. SYMROOT is a special case, because many other |
452 # Xcode variables depend on it, including variables such as | 452 # Xcode variables depend on it, including variables such as |
453 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 453 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
454 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 454 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
455 # files to appear (when present) in the UI as actual files and not red | 455 # files to appear (when present) in the UI as actual files and not red |
456 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 456 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
457 # and therefore SYMROOT, needs to be set at the project level. | 457 # and therefore SYMROOT, needs to be set at the project level. |
458 'SYMROOT': '<(DEPTH)/xcodebuild', | 458 'SYMROOT': '<(DEPTH)/xcodebuild', |
459 }, | 459 }, |
460 } | 460 } |
OLD | NEW |