summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-26 00:48:05 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-26 00:48:05 +0000
commit0fa17083628532ccc0941c9bc4ff13169d9c2c95 (patch)
treefebfb81fa93b91308266496d77de5c6ea90d0396 /build
parentf2b02f0659ec13b12156b11defba7f7ec816e0ca (diff)
downloadchromium_src-0fa17083628532ccc0941c9bc4ff13169d9c2c95.zip
chromium_src-0fa17083628532ccc0941c9bc4ff13169d9c2c95.tar.gz
chromium_src-0fa17083628532ccc0941c9bc4ff13169d9c2c95.tar.bz2
Build fix. Revert -Wextra.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42709 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r--build/common.gypi3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/common.gypi b/build/common.gypi
index a4328bb..c22fb5c 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -704,7 +704,8 @@
'-pthread',
'-fno-exceptions',
'-Wall',
- '-Wextra',
+ # TODO(evan): turn this back on once all the builds work.
+ # '-Wextra',
# Don't warn about unused function params. We use those everywhere.
'-Wno-unused-parameter',
# Don't warn about the "struct foo f = {0};" initialization pattern.