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 5683 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5694 'VCManifestTool': { | 5694 'VCManifestTool': { |
5695 'AdditionalManifestFiles': [ | 5695 'AdditionalManifestFiles': [ |
5696 '>(win_exe_compatibility_manifest)', | 5696 '>(win_exe_compatibility_manifest)', |
5697 ], | 5697 ], |
5698 }, | 5698 }, |
5699 }], | 5699 }], |
5700 ], | 5700 ], |
5701 'conditions': [ | 5701 'conditions': [ |
5702 # Building with Clang on Windows is a work in progress and very | 5702 # Building with Clang on Windows is a work in progress and very |
5703 # experimental. See crbug.com/82385. | 5703 # experimental. See crbug.com/82385. |
| 5704 # Keep this in sync with the similar blocks in build/config/compiler
/BUILD.gn |
5704 ['clang==1', { | 5705 ['clang==1', { |
5705 'VCCLCompilerTool': { | 5706 'VCCLCompilerTool': { |
5706 'AdditionalOptions': [ | 5707 'AdditionalOptions': [ |
5707 '-fmsc-version=1800', | 5708 '-fmsc-version=1800', |
5708 | 5709 |
5709 # Many files use intrinsics without including this header. | 5710 # Many files use intrinsics without including this header. |
5710 # TODO(hans): Fix those files, or move this to sub-GYPs. | 5711 # TODO(hans): Fix those files, or move this to sub-GYPs. |
5711 '/FIIntrin.h', | 5712 '/FIIntrin.h', |
5712 | 5713 |
5713 # TODO(hans): Make this list shorter eventually. | 5714 # TODO(hans): Make this list shorter eventually. |
(...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6188 # settings in target dicts. SYMROOT is a special case, because many other | 6189 # settings in target dicts. SYMROOT is a special case, because many other |
6189 # Xcode variables depend on it, including variables such as | 6190 # Xcode variables depend on it, including variables such as |
6190 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6191 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
6191 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6192 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
6192 # files to appear (when present) in the UI as actual files and not red | 6193 # files to appear (when present) in the UI as actual files and not red |
6193 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6194 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
6194 # and therefore SYMROOT, needs to be set at the project level. | 6195 # and therefore SYMROOT, needs to be set at the project level. |
6195 'SYMROOT': '<(DEPTH)/xcodebuild', | 6196 'SYMROOT': '<(DEPTH)/xcodebuild', |
6196 }, | 6197 }, |
6197 } | 6198 } |
OLD | NEW |