From 4a5e778355c2b05cccbd8e7aca129f199de5e001 Mon Sep 17 00:00:00 2001 From: "pinkerton@google.com" Date: Wed, 15 Oct 2008 13:17:40 +0000 Subject: improve layout tests by removing definition of DEBUG (libxml uses it to spew diagnostic output to stderr) Review URL: http://codereview.chromium.org/7149 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3394 0039d316-1c4b-4281-b951-d872f2087c98 --- build/debug.xcconfig | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build/debug.xcconfig b/build/debug.xcconfig index bddcd4b..d9ceb839 100644 --- a/build/debug.xcconfig +++ b/build/debug.xcconfig @@ -6,7 +6,10 @@ COPY_PHASE_STRIP = NO GCC_OPTIMIZATION_LEVEL = 0 -GCC_PREPROCESSOR_DEFINITIONS = $(GCC_PREPROCESSOR_DEFINITIONS) DEBUG +// Would be nice to define DEBUG to prevent against people incorrectly using +// it intstead of !NDEBUG, but it causes libxml to spew diagnostic info all +// over our layout tests. +// GCC_PREPROCESSOR_DEFINITIONS = $(GCC_PREPROCESSOR_DEFINITIONS) DEBUG // Additional libc++ strictness; disabled because they break some things in // WebKit and some additional things when building with gcc 4.2. // GCC_PREPROCESSOR_DEFINITIONS = $(GCC_PREPROCESSOR_DEFINITIONS) DEBUG _GLIBCXX_CONCEPT_CHECKS _GLIBCXX_DEBUG _GLIBCXX_DEBUG_PEDANTIC -- cgit v1.1