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 14890005: Enable Clang warnings in .cc files for Linux+[Aura/ChromeOS] (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 7 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 | Annotate | Revision Log
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 1515 matching lines...) Expand 10 before | Expand all | Expand 10 after
1526 ['use_concatenated_impulse_responses==1', { 1526 ['use_concatenated_impulse_responses==1', {
1527 'grit_defines': ['-D', 'use_concatenated_impulse_responses'], 1527 'grit_defines': ['-D', 'use_concatenated_impulse_responses'],
1528 }], 1528 }],
1529 ['clang_use_chrome_plugins==1 and OS!="win"', { 1529 ['clang_use_chrome_plugins==1 and OS!="win"', {
1530 'variables': { 1530 'variables': {
1531 'clang_chrome_plugins_flags': [ 1531 'clang_chrome_plugins_flags': [
1532 '<!@(<(DEPTH)/tools/clang/scripts/plugin_flags.sh)' 1532 '<!@(<(DEPTH)/tools/clang/scripts/plugin_flags.sh)'
1533 ], 1533 ],
1534 }, 1534 },
1535 'conditions': [ 1535 'conditions': [
1536 ['OS=="linux" and chromeos==0 and use_aura==0', { 1536 ['OS=="linux"', {
1537 'clang_chrome_plugins_flags': [ 1537 'clang_chrome_plugins_flags': [
1538 '<@(clang_chrome_plugins_flags)' 1538 '<@(clang_chrome_plugins_flags)'
1539 ], 1539 ],
1540 }, { 1540 }, {
1541 # TODO(rsleevi): http://crbug.com/115047 - This warning is only 1541 # TODO(rsleevi): http://crbug.com/115047 - This warning is only
1542 # enabled for Linux for now. Disable everywhere else. 1542 # enabled for Linux for now. Disable everywhere else.
1543 'clang_chrome_plugins_flags': [ 1543 'clang_chrome_plugins_flags': [
1544 '<@(clang_chrome_plugins_flags)', 1544 '<@(clang_chrome_plugins_flags)',
1545 '-Xclang', 1545 '-Xclang',
1546 '-plugin-arg-find-bad-constructs', 1546 '-plugin-arg-find-bad-constructs',
(...skipping 2892 matching lines...) Expand 10 before | Expand all | Expand 10 after
4439 # settings in target dicts. SYMROOT is a special case, because many other 4439 # settings in target dicts. SYMROOT is a special case, because many other
4440 # Xcode variables depend on it, including variables such as 4440 # Xcode variables depend on it, including variables such as
4441 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4441 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4442 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4442 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4443 # files to appear (when present) in the UI as actual files and not red 4443 # files to appear (when present) in the UI as actual files and not red
4444 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4444 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4445 # and therefore SYMROOT, needs to be set at the project level. 4445 # and therefore SYMROOT, needs to be set at the project level.
4446 'SYMROOT': '<(DEPTH)/xcodebuild', 4446 'SYMROOT': '<(DEPTH)/xcodebuild',
4447 }, 4447 },
4448 } 4448 }
OLDNEW
« no previous file with comments | « ash/system/chromeos/network/tray_network.cc ('k') | chrome/browser/chromeos/policy/variations_service_policy_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698