summaryrefslogtreecommitdiffstats
path: root/third_party/libjingle
diff options
context:
space:
mode:
authordmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-10 22:33:44 +0000
committerdmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-10 22:33:44 +0000
commit4fbaaee2b26f3edb0fc68a9b330f70e09d1f749d (patch)
tree67ae287303ab210090d1a491589903ddaf709dcb /third_party/libjingle
parentfad9c8a5d8f6ae4d1272985b63131986189bbed6 (diff)
downloadchromium_src-4fbaaee2b26f3edb0fc68a9b330f70e09d1f749d.zip
chromium_src-4fbaaee2b26f3edb0fc68a9b330f70e09d1f749d.tar.gz
chromium_src-4fbaaee2b26f3edb0fc68a9b330f70e09d1f749d.tar.bz2
Proper fix for libjingle _DEBUG issue.
BUG=none TEST=none Review URL: http://codereview.chromium.org/2763003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49460 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/libjingle')
-rw-r--r--third_party/libjingle/libjingle.gyp11
1 files changed, 10 insertions, 1 deletions
diff --git a/third_party/libjingle/libjingle.gyp b/third_party/libjingle/libjingle.gyp
index bcf8eb8..587b63d 100644
--- a/third_party/libjingle/libjingle.gyp
+++ b/third_party/libjingle/libjingle.gyp
@@ -11,6 +11,15 @@
'SAFE_TO_DEFINE_TALK_BASE_LOGGING_MACROS',
'EXPAT_RELATIVE_PATH',
],
+ 'configurations': {
+ 'Debug': {
+ 'defines': [
+ # TODO(sergeyu): Fix libjingle to use NDEBUG instead of
+ # _DEBUG and remove this define. See below as well.
+ '_DEBUG',
+ ],
+ }
+ },
'include_dirs': [
'./overrides',
'./source',
@@ -77,7 +86,7 @@
'Debug': {
'defines': [
# TODO(sergeyu): Fix libjingle to use NDEBUG instead of
- # _DEBUG and remove this define.
+ # _DEBUG and remove this define. See above as well.
'_DEBUG',
],
}