summaryrefslogtreecommitdiffstats
path: root/chrome/common/ipc_tests.scons
diff options
context:
space:
mode:
authoragl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-12 04:00:08 +0000
committeragl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-12 04:00:08 +0000
commite707d5e60b2191d3ffde90edcbafc01d8d7f7590 (patch)
treeb9d29f7a0667325481e68b00900812ec4c9f68fd /chrome/common/ipc_tests.scons
parent84dd17ec3f2b4ccd2bec330596bb1aa912ae78d7 (diff)
downloadchromium_src-e707d5e60b2191d3ffde90edcbafc01d8d7f7590.zip
chromium_src-e707d5e60b2191d3ffde90edcbafc01d8d7f7590.tar.gz
chromium_src-e707d5e60b2191d3ffde90edcbafc01d8d7f7590.tar.bz2
POSIX: basic IPC logging
For the moment, we enable IPC logging with an environment variable (CHROME_IPC_LOGGING) and log everything to stderr. Review URL: http://codereview.chromium.org/20156 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9643 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/ipc_tests.scons')
-rw-r--r--chrome/common/ipc_tests.scons11
1 files changed, 11 insertions, 0 deletions
diff --git a/chrome/common/ipc_tests.scons b/chrome/common/ipc_tests.scons
index a9dd518..3f2c3fb 100644
--- a/chrome/common/ipc_tests.scons
+++ b/chrome/common/ipc_tests.scons
@@ -8,6 +8,8 @@ env = env.Clone()
env.SConscript([
'$BASE_DIR/using_base.scons',
+ '$BASE_DIR/gfx/using_base_gfx.scons', # needed for logging
+ '$CHROME_SRC_DIR/build/using_googleurl.scons', # needed for logging
'$BREAKPAD_DIR/using_breakpad.scons',
'$CHROME_DIR/third_party/wtl/using_wtl.scons',
'$GTEST_DIR/../using_gtest.scons',
@@ -15,11 +17,20 @@ env.SConscript([
'$LIBJPEG_DIR/using_libjpeg.scons',
'$LIBPNG_DIR/using_libpng.scons',
'$LIBXML_DIR/using_libxml.scons',
+ '$NET_DIR/using_net.scons', # needed for logging
'$NPAPI_DIR/using_npapi.scons',
'$SKIA_DIR/using_skia.scons',
'$ZLIB_DIR/using_zlib.scons',
], {'env':env})
+# needed for logging
+env.Append(
+ LIBS = [
+ 'glue',
+ 'WTF',
+ ],
+)
+
if env.Bit('posix'):
env.SConscript([
'$LIBEVENT_DIR/using_libevent.scons',