Revert _GLIBCXX_DEBUG for now.

Breaks media_unittests and unit_tests on chromeos.

TBR=thestig

BUG=65151

Review URL: https://codereview.chromium.org/22000003

git-svn-id: http://src.chromium.org/svn/trunk/src/build@215403 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
phajdan.jr@chromium.org 2013-08-02 23:29:48 +00:00
Родитель 4266a8d0a7
Коммит 149205c537
1 изменённых файлов: 6 добавлений и 7 удалений

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

@ -976,6 +976,8 @@
# Profile without optimizing out stack frames when profiling==1.
'profiling_full_stack_frames%': '0',
# Enable strict glibc debug mode.
'glibcxx_debug%': 0,
# And if we want to dump symbols for Breakpad-enabled builds.
'linux_dump_symbols%': 0,
# And if we want to strip the binary after dumping symbols.
@ -1964,6 +1966,10 @@
['profiling==1', {
'defines': ['ENABLE_PROFILING=1'],
}],
['OS=="linux" and glibcxx_debug==1', {
'defines': ['_GLIBCXX_DEBUG=1',],
'cflags_cc+': ['-g'],
}],
['remoting==1', {
'defines': ['ENABLE_REMOTING=1'],
}],
@ -2547,13 +2553,6 @@
}],
],
}],
['OS=="linux" and clang!=1 and target_arch!="ia32"', {
# Enable libstdc++ debugging facilities to help catch problems
# early, see http://crbug.com/65151 .
# TODO(phajdan.jr): Should we enable this for all of POSIX?
'defines': ['_GLIBCXX_DEBUG=1',],
'cflags_cc+': ['-g'],
}],
# Disabled on iOS because it was causing a crash on startup.
# TODO(michelea): investigate, create a reduced test and possibly
# submit a radar.