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

Side by Side Diff: build/common.gypi

Issue 159123003: Suppress some more warnings for Clang Windows builds (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 10 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 | no next file » | 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 4660 matching lines...) Expand 10 before | Expand all | Expand 10 after
4671 '/FIIntrin.h', 4671 '/FIIntrin.h',
4672 4672
4673 # TODO(hans): Make this list shorter eventually. 4673 # TODO(hans): Make this list shorter eventually.
4674 '-Qunused-arguments', 4674 '-Qunused-arguments',
4675 '-Wno-c++11-compat-deprecated-writable-strings', 4675 '-Wno-c++11-compat-deprecated-writable-strings',
4676 '-Wno-char-subscripts', 4676 '-Wno-char-subscripts',
4677 '-Wno-deprecated-declarations', 4677 '-Wno-deprecated-declarations',
4678 '-Wno-deprecated-register', 4678 '-Wno-deprecated-register',
4679 '-Wno-empty-body', 4679 '-Wno-empty-body',
4680 '-Wno-enum-conversion', 4680 '-Wno-enum-conversion',
4681 '-Wno-extra-tokens',
4682 '-Wno-ignored-attributes',
4681 '-Wno-incompatible-pointer-types', 4683 '-Wno-incompatible-pointer-types',
4684 '-Wno-int-to-void-pointer-cast',
4685 '-Wno-invalid-noreturn',
4682 '-Wno-logical-op-parentheses', 4686 '-Wno-logical-op-parentheses',
4683 '-Wno-microsoft', 4687 '-Wno-microsoft',
4684 '-Wno-missing-braces', 4688 '-Wno-missing-braces',
4689 '-Wno-missing-declarations',
4685 '-Wno-msvc-include', 4690 '-Wno-msvc-include',
4686 '-Wno-null-dereference', 4691 '-Wno-null-dereference',
4687 '-Wno-overloaded-virtual', 4692 '-Wno-overloaded-virtual',
4688 '-Wno-parentheses', 4693 '-Wno-parentheses',
4689 '-Wno-pointer-sign', 4694 '-Wno-pointer-sign',
4690 '-Wno-reorder', 4695 '-Wno-reorder',
4691 '-Wno-return-type-c-linkage', 4696 '-Wno-return-type-c-linkage',
4692 '-Wno-self-assign', 4697 '-Wno-self-assign',
4698 '-Wno-sometimes-uninitialized',
4693 '-Wno-switch', 4699 '-Wno-switch',
4694 '-Wno-tautological-compare', 4700 '-Wno-tautological-compare',
4695 '-Wno-unknown-pragmas', 4701 '-Wno-unknown-pragmas',
4696 '-Wno-unsequenced', 4702 '-Wno-unsequenced',
4697 '-Wno-unused-function', 4703 '-Wno-unused-function',
4698 '-Wno-unused-private-field', 4704 '-Wno-unused-private-field',
4699 '-Wno-unused-value', 4705 '-Wno-unused-value',
4700 '-Wno-unused-variable', 4706 '-Wno-unused-variable',
4701 '-ferror-limit=1', 4707 '-ferror-limit=1',
4702 ], 4708 ],
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
4885 # settings in target dicts. SYMROOT is a special case, because many other 4891 # settings in target dicts. SYMROOT is a special case, because many other
4886 # Xcode variables depend on it, including variables such as 4892 # Xcode variables depend on it, including variables such as
4887 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4893 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4888 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4894 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4889 # files to appear (when present) in the UI as actual files and not red 4895 # files to appear (when present) in the UI as actual files and not red
4890 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4896 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4891 # and therefore SYMROOT, needs to be set at the project level. 4897 # and therefore SYMROOT, needs to be set at the project level.
4892 'SYMROOT': '<(DEPTH)/xcodebuild', 4898 'SYMROOT': '<(DEPTH)/xcodebuild',
4893 }, 4899 },
4894 } 4900 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698