Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(870)

Unified Diff: chrome/common/ipc_tests.scons

Issue 20156: POSIX: basic IPC logging (Closed)
Patch Set: Merge jrg's xcode changes Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/ipc_message_utils.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/ipc_tests.scons
diff --git a/chrome/common/ipc_tests.scons b/chrome/common/ipc_tests.scons
index a9dd518e0d0c9734f132b545a327df0220d156dc..3f2c3fb45275cc5a0ef301fc5c8af144d5c7aa5d 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',
« no previous file with comments | « chrome/common/ipc_message_utils.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698