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

Side by Side Diff: build/common.gypi

Issue 2066213002: clang/win: Use /FIintrin.h instead of /FIIntrin.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: while here, also add bug link to todo Created 4 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/win/BUILD.gn » ('j') | no next file with comments »
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 5803 matching lines...) Expand 10 before | Expand all | Expand 10 after
5814 'VCCLCompilerTool': { 5814 'VCCLCompilerTool': {
5815 'AdditionalOptions': [ 5815 'AdditionalOptions': [
5816 # Don't warn about unused function parameters. 5816 # Don't warn about unused function parameters.
5817 # (This is also used on other platforms.) 5817 # (This is also used on other platforms.)
5818 '-Wno-unused-parameter', 5818 '-Wno-unused-parameter',
5819 # Don't warn about the "struct foo f = {0};" initialization 5819 # Don't warn about the "struct foo f = {0};" initialization
5820 # pattern. 5820 # pattern.
5821 '-Wno-missing-field-initializers', 5821 '-Wno-missing-field-initializers',
5822 5822
5823 # Many files use intrinsics without including this header. 5823 # Many files use intrinsics without including this header.
5824 # TODO(hans): Fix those files, or move this to sub-GYPs. 5824 # TODO(hans): Fix those files, or move this to sub-GYPs,
5825 '/FIIntrin.h', 5825 # https://crbug.com/592745
5826 '/FIintrin.h',
5826 5827
5827 # TODO(hans): Make this list shorter eventually, http://crbug. com/504657 5828 # TODO(hans): Make this list shorter eventually, http://crbug. com/504657
5828 '-Wno-microsoft-enum-value', # http://crbug.com/505296 5829 '-Wno-microsoft-enum-value', # http://crbug.com/505296
5829 '-Wno-unknown-pragmas', # http://crbug.com/505314 5830 '-Wno-unknown-pragmas', # http://crbug.com/505314
5830 '-Wno-microsoft-cast', # http://crbug.com/550065 5831 '-Wno-microsoft-cast', # http://crbug.com/550065
5831 ], 5832 ],
5832 }, 5833 },
5833 }], 5834 }],
5834 ['clang==1 and clang_use_chrome_plugins==1', { 5835 ['clang==1 and clang_use_chrome_plugins==1', {
5835 'VCCLCompilerTool': { 5836 'VCCLCompilerTool': {
(...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after
6360 # settings in target dicts. SYMROOT is a special case, because many other 6361 # settings in target dicts. SYMROOT is a special case, because many other
6361 # Xcode variables depend on it, including variables such as 6362 # Xcode variables depend on it, including variables such as
6362 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6363 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6363 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6364 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6364 # files to appear (when present) in the UI as actual files and not red 6365 # files to appear (when present) in the UI as actual files and not red
6365 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6366 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6366 # and therefore SYMROOT, needs to be set at the project level. 6367 # and therefore SYMROOT, needs to be set at the project level.
6367 'SYMROOT': '<(DEPTH)/xcodebuild', 6368 'SYMROOT': '<(DEPTH)/xcodebuild',
6368 }, 6369 },
6369 } 6370 }
OLDNEW
« no previous file with comments | « no previous file | build/config/win/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698