summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-25 22:58:47 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-25 22:58:47 +0000
commitb3f0f4bf66f96b3b380d62349cf2e61d7ab95ecb (patch)
tree976518e97112722be0a5d09a994a5faaac1fb317 /build
parent95250e4c742d27fad6e4bb737a8110a4ee63323c (diff)
downloadchromium_src-b3f0f4bf66f96b3b380d62349cf2e61d7ab95ecb.zip
chromium_src-b3f0f4bf66f96b3b380d62349cf2e61d7ab95ecb.tar.gz
chromium_src-b3f0f4bf66f96b3b380d62349cf2e61d7ab95ecb.tar.bz2
Revert "linux: turn on -Wextra"
Compiled locally and on trybots but failed on builder?! This reverts commit r42688. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42689 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..6442f40 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 the v8 change lands.
+ #'-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.