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

Unified Diff: build/common.gypi

Issue 2825006: Revert 49982 - patch (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/third_party/dmg_fp/dtoa.cc ('k') | chrome/browser/zygote_main_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
===================================================================
--- build/common.gypi (revision 50001)
+++ build/common.gypi (working copy)
@@ -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.
« no previous file with comments | « base/third_party/dmg_fp/dtoa.cc ('k') | chrome/browser/zygote_main_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698