TBR=thakis@chromium.org
Review URL: http://codereview.chromium.org/2825006

git-svn-id: http://src.chromium.org/svn/trunk/src/build@50002 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
thakis@chromium.org 2010-06-16 18:39:53 +00:00
Родитель e7f4ce0d56
Коммит 3a7aa84e14
1 изменённых файлов: 2 добавлений и 10 удалений

Просмотреть файл

@ -229,14 +229,11 @@
# Set this to true to enable SELinux support. # Set this to true to enable SELinux support.
'selinux%': 0, 'selinux%': 0,
# Set this to true when building with Clang.
'clang%': 1,
# Strip the binary after dumping symbols. # Strip the binary after dumping symbols.
'linux_strip_binary%': 0, 'linux_strip_binary%': 0,
# Disable TCMalloc. It uses variable length arrays which aren't in C++. # Enable TCMalloc.
'linux_use_tcmalloc%': 0, 'linux_use_tcmalloc%': 1,
# Disable TCMalloc's debugallocation. # Disable TCMalloc's debugallocation.
'linux_use_debugallocation%': 0, 'linux_use_debugallocation%': 0,
@ -813,11 +810,6 @@
'-Wno-unused-parameter', '-Wno-unused-parameter',
# Don't warn about the "struct foo f = {0};" initialization pattern. # Don't warn about the "struct foo f = {0};" initialization pattern.
'-Wno-missing-field-initializers', '-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', '-D_FILE_OFFSET_BITS=64',
# Don't export any symbols (for example, to plugins we dlopen()). # Don't export any symbols (for example, to plugins we dlopen()).
# Note: this is *required* to make some plugins work. # Note: this is *required* to make some plugins work.