diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-16 18:39:53 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-16 18:39:53 +0000 |
commit | 46ce5b568acd801330e52a4e04534d9689990835 (patch) | |
tree | 86944486c8faf85322981d343013f2de8ecfbb91 /build | |
parent | ac201f961a6c0151dc596829584339c199527ba5 (diff) | |
download | chromium_src-46ce5b568acd801330e52a4e04534d9689990835.zip chromium_src-46ce5b568acd801330e52a4e04534d9689990835.tar.gz chromium_src-46ce5b568acd801330e52a4e04534d9689990835.tar.bz2 |
Revert 49982 - patch
TBR=thakis@chromium.org
Review URL: http://codereview.chromium.org/2825006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50002 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/common.gypi | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/build/common.gypi b/build/common.gypi index 5f7740a..e2da12b 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -229,14 +229,11 @@ # Set this to true to enable SELinux support. 'selinux%': 0, - # Set this to true when building with Clang. - 'clang%': 1, - # Strip the binary after dumping symbols. 'linux_strip_binary%': 0, - # Disable TCMalloc. It uses variable length arrays which aren't in C++. - 'linux_use_tcmalloc%': 0, + # Enable TCMalloc. + 'linux_use_tcmalloc%': 1, # Disable TCMalloc's debugallocation. 'linux_use_debugallocation%': 0, @@ -813,11 +810,6 @@ '-Wno-unused-parameter', # Don't warn about the "struct foo f = {0};" initialization pattern. '-Wno-missing-field-initializers', - # Don't warn about unused variables, due to a common pattern: - # scoped_deleter_of_some_sort unused_variable(&thing_to_delete); - '-Wno-unused-variable', - # gtest confuses clang. - '-Wno-bool-conversions', '-D_FILE_OFFSET_BITS=64', # Don't export any symbols (for example, to plugins we dlopen()). # Note: this is *required* to make some plugins work. |