| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 # IMPORTANT: | 5 # IMPORTANT: |
| 6 # Please don't directly include this file if you are building via gyp_chromium, | 6 # Please don't directly include this file if you are building via gyp_chromium, |
| 7 # since gyp_chromium is automatically forcing its inclusion. | 7 # since gyp_chromium is automatically forcing its inclusion. |
| 8 { | 8 { |
| 9 # Variables expected to be overriden on the GYP command line (-D) or by | 9 # Variables expected to be overriden on the GYP command line (-D) or by |
| 10 # ~/.gyp/include.gypi. | 10 # ~/.gyp/include.gypi. |
| (...skipping 4409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4420 'configurations': { | 4420 'configurations': { |
| 4421 'x86_Base': { | 4421 'x86_Base': { |
| 4422 'msvs_settings': { | 4422 'msvs_settings': { |
| 4423 'VCLinkerTool': { | 4423 'VCLinkerTool': { |
| 4424 'AdditionalOptions': [ | 4424 'AdditionalOptions': [ |
| 4425 '/safeseh', | 4425 '/safeseh', |
| 4426 '/dynamicbase', | 4426 '/dynamicbase', |
| 4427 '/ignore:4199', | 4427 '/ignore:4199', |
| 4428 '/ignore:4221', | 4428 '/ignore:4221', |
| 4429 '/nxcompat', | 4429 '/nxcompat', |
| 4430 '/largeaddressaware', |
| 4430 ], | 4431 ], |
| 4431 }, | 4432 }, |
| 4432 }, | 4433 }, |
| 4433 }, | 4434 }, |
| 4434 'x64_Base': { | 4435 'x64_Base': { |
| 4435 'msvs_settings': { | 4436 'msvs_settings': { |
| 4436 'VCLinkerTool': { | 4437 'VCLinkerTool': { |
| 4437 'AdditionalOptions': [ | 4438 'AdditionalOptions': [ |
| 4438 # safeseh is not compatible with x64 | 4439 # safeseh is not compatible with x64 |
| 4439 '/dynamicbase', | 4440 '/dynamicbase', |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4568 # settings in target dicts. SYMROOT is a special case, because many other | 4569 # settings in target dicts. SYMROOT is a special case, because many other |
| 4569 # Xcode variables depend on it, including variables such as | 4570 # Xcode variables depend on it, including variables such as |
| 4570 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4571 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 4571 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4572 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 4572 # files to appear (when present) in the UI as actual files and not red | 4573 # files to appear (when present) in the UI as actual files and not red |
| 4573 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4574 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 4574 # and therefore SYMROOT, needs to be set at the project level. | 4575 # and therefore SYMROOT, needs to be set at the project level. |
| 4575 'SYMROOT': '<(DEPTH)/xcodebuild', | 4576 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 4576 }, | 4577 }, |
| 4577 } | 4578 } |
| OLD | NEW |