From dab8619b4848bb10dfe78a3f0c59d6e661ec9610 Mon Sep 17 00:00:00 2001 From: "dkegel@google.com" Date: Thu, 18 Sep 2008 00:10:38 +0000 Subject: Make tcp_client_socket_unittest pass on Linux. Requires another changeset that puts libevent in third_party; I'll upload that next. This is not the final word; it makes too many syscalls per read. But it's a start. Review URL: http://codereview.chromium.org/3202 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2346 0039d316-1c4b-4281-b951-d872f2087c98 --- build/SConscript.main | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'build') diff --git a/build/SConscript.main b/build/SConscript.main index 25b8fec..df6e80d 100644 --- a/build/SConscript.main +++ b/build/SConscript.main @@ -63,6 +63,7 @@ env = Environment( BSPATCH_DIR = '$THIRD_PARTY_DIR/bspatch', BZIP2_DIR = '$THIRD_PARTY_DIR/bzip2', ICU38_DIR = '$THIRD_PARTY_DIR/icu38', + LIBEVENT_DIR = '$THIRD_PARTY_DIR/libevent', LIBJPEG_DIR = '$THIRD_PARTY_DIR/libjpeg', LIBPNG_DIR = '$THIRD_PARTY_DIR/libpng', LIBXML_DIR = '$THIRD_PARTY_DIR/libxml', @@ -500,6 +501,10 @@ if LoadComponent('third_party'): '$LIBXML_DIR/SConscript', '$LIBXSLT_DIR/SConscript', ]) + if env['PLATFORM'] == 'posix': + sconscripts.extend([ + '$LIBEVENT_DIR/SConscript', + ]) # This is temporary until we get this lib to build on other platforms. if env['PLATFORM'] == 'win32': sconscripts.extend([ -- cgit v1.1