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

Unified Diff: chrome/common/ipc_tests.scons

Issue 21367: Add additional library dependencies for the shared linking of ipc_tests. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' 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 | « no previous file | 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
===================================================================
--- chrome/common/ipc_tests.scons (revision 9798)
+++ chrome/common/ipc_tests.scons (working copy)
@@ -34,7 +34,21 @@
if env.Bit('posix'):
env.SConscript([
'$LIBEVENT_DIR/using_libevent.scons',
+ '$CHROME_SRC_DIR/build/using_v8.scons', # needed for shared link deps
+ '$LIBXSLT_DIR/using_libxslt.scons', # needed for shared link deps
], {'env':env})
+ # needed for shared link deps
+ env.Append(
+ LIBS = [
+ 'JavaScriptCore_pcre',
+ 'V8Bindings',
+ 'WebCore',
+ 'browser',
+ 'port',
+ 'renderer',
+ 'sqlite',
+ ]
+ )
# TODO(sgk): convert into a using_*.scons pattern when we update WebKit.
env.Append(
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698