Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(342)

Side by Side Diff: build/common.gypi

Issue 1158763006: clang/win: Start work on getting clang/win working in gn. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | build/config/BUILDCONFIG.gn » ('j') | build/config/compiler/BUILD.gn » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | build/config/BUILDCONFIG.gn » ('j') | build/config/compiler/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698