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

Side by Side Diff: build/common.gypi

Issue 1220133003: Fixed all unused-variable Clang warnings on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@iaccessible2-fix-gn
Patch Set: Created 5 years, 5 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
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 5700 matching lines...) Expand 10 before | Expand all | Expand 10 after
5711 '-Wno-msvc-include', # http://crbug.com/505299 5711 '-Wno-msvc-include', # http://crbug.com/505299
5712 '-Wno-overloaded-virtual', # http://crbug.com/505301 5712 '-Wno-overloaded-virtual', # http://crbug.com/505301
5713 '-Wno-pointer-sign', # http://crbug.com/505303 5713 '-Wno-pointer-sign', # http://crbug.com/505303
5714 '-Wno-reorder', # http://crbug.com/505304 5714 '-Wno-reorder', # http://crbug.com/505304
5715 '-Wno-sometimes-uninitialized', # http://crbug.com/505307 5715 '-Wno-sometimes-uninitialized', # http://crbug.com/505307
5716 '-Wno-switch', # http://crbug.com/505308 5716 '-Wno-switch', # http://crbug.com/505308
5717 '-Wno-unknown-pragmas', # http://crbug.com/505314 5717 '-Wno-unknown-pragmas', # http://crbug.com/505314
5718 '-Wno-unused-function', # http://crbug.com/505316 5718 '-Wno-unused-function', # http://crbug.com/505316
5719 '-Wno-unused-private-field', # http://crbug.com/505317 5719 '-Wno-unused-private-field', # http://crbug.com/505317
5720 '-Wno-unused-value', # http://crbug.com/505318 5720 '-Wno-unused-value', # http://crbug.com/505318
5721 '-Wno-unused-variable', # http://crbug.com/505319
5722 '-Wno-unused-local-typedef', # http://crbug.com/411648 5721 '-Wno-unused-local-typedef', # http://crbug.com/411648
5723 ], 5722 ],
5724 }, 5723 },
5725 }], 5724 }],
5726 ['clang==1 and target_arch=="ia32"', { 5725 ['clang==1 and target_arch=="ia32"', {
5727 'VCCLCompilerTool': { 5726 'VCCLCompilerTool': {
5728 'WarnAsError': 'false', 5727 'WarnAsError': 'false',
5729 'AdditionalOptions': [ 5728 'AdditionalOptions': [
5730 '/fallback', 5729 '/fallback',
5731 ], 5730 ],
(...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after
6189 # settings in target dicts. SYMROOT is a special case, because many other 6188 # settings in target dicts. SYMROOT is a special case, because many other
6190 # Xcode variables depend on it, including variables such as 6189 # Xcode variables depend on it, including variables such as
6191 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6190 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6192 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6191 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6193 # files to appear (when present) in the UI as actual files and not red 6192 # files to appear (when present) in the UI as actual files and not red
6194 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6193 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6195 # and therefore SYMROOT, needs to be set at the project level. 6194 # and therefore SYMROOT, needs to be set at the project level.
6196 'SYMROOT': '<(DEPTH)/xcodebuild', 6195 'SYMROOT': '<(DEPTH)/xcodebuild',
6197 }, 6196 },
6198 } 6197 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698