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 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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', |
391 }, | 391 }, |
392 'VCLibrarianTool': { | 392 'VCLibrarianTool': { |
393 'AdditionalOptions': '/ignore:4221', | 393 'AdditionalOptions': '/ignore:4221', |
394 'OutputFile': '$(OutDir)\\lib\\$(ProjectName).lib', | |
395 'AdditionalLibraryDirectories': | 394 'AdditionalLibraryDirectories': |
396 '<(DEPTH)/third_party/platformsdk_win2008_6_1/files/Lib', | 395 '<(DEPTH)/third_party/platformsdk_win2008_6_1/files/Lib', |
397 }, | 396 }, |
398 'VCLinkerTool': { | 397 'VCLinkerTool': { |
399 'AdditionalOptions': | 398 'AdditionalOptions': |
400 '/safeseh /dynamicbase /ignore:4199 /ignore:4221 /nxcompat', | 399 '/safeseh /dynamicbase /ignore:4199 /ignore:4221 /nxcompat', |
401 'AdditionalDependencies': [ | 400 'AdditionalDependencies': [ |
402 'wininet.lib', | 401 'wininet.lib', |
403 'version.lib', | 402 'version.lib', |
404 'msimg32.lib', | 403 'msimg32.lib', |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
451 # settings in target dicts. SYMROOT is a special case, because many other | 450 # settings in target dicts. SYMROOT is a special case, because many other |
452 # Xcode variables depend on it, including variables such as | 451 # Xcode variables depend on it, including variables such as |
453 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 452 # 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 | 453 # 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 | 454 # 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, | 455 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
457 # and therefore SYMROOT, needs to be set at the project level. | 456 # and therefore SYMROOT, needs to be set at the project level. |
458 'SYMROOT': '<(DEPTH)/xcodebuild', | 457 'SYMROOT': '<(DEPTH)/xcodebuild', |
459 }, | 458 }, |
460 } | 459 } |
OLD | NEW |