summaryrefslogtreecommitdiffstats
path: root/third_party/libevent
diff options
context:
space:
mode:
authorsgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-01 22:05:12 +0000
committersgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-01 22:05:12 +0000
commit0fad1f1a74408b939d1b09dcc2f9391544e7e692 (patch)
treec62164260c26f143c9ae43c32694142a725bc7eb /third_party/libevent
parenta9b826af8ef183810c176b9ede4a2934f4678d50 (diff)
downloadchromium_src-0fad1f1a74408b939d1b09dcc2f9391544e7e692.zip
chromium_src-0fad1f1a74408b939d1b09dcc2f9391544e7e692.tar.gz
chromium_src-0fad1f1a74408b939d1b09dcc2f9391544e7e692.tar.bz2
Remove the checked-in scons configuration files.
Review URL: http://codereview.chromium.org/53121 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12982 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/libevent')
-rw-r--r--third_party/libevent/libevent.scons76
-rw-r--r--third_party/libevent/using_libevent.scons15
2 files changed, 0 insertions, 91 deletions
diff --git a/third_party/libevent/libevent.scons b/third_party/libevent/libevent.scons
deleted file mode 100644
index f8fc4bf..0000000
--- a/third_party/libevent/libevent.scons
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-
-__doc__ = """
-Configuration for building event.lib / libevent.a.
-
-This is currently only suitable for Linux and Mac.
-"""
-
-Import('env')
-
-env = env.Clone()
-
-env.Append(
- CPPDEFINES = [
- 'HAVE_CONFIG_H',
- ],
-)
-
-if env.Bit('mac'):
- env.Prepend(
- CPPPATH = [
- '$LIBEVENT_DIR/generated/',
- ],
- )
- env['ENV']['CONFIGURATION_TEMP_DIR'] = env.Dir('$LIBEVENT_DIR').abspath
- env.Command('$LIBEVENT_DIR/generated/config.h',
- ['libevent.xcodeproj/libevent_prebuild.sh', 'config.h.in'],
- 'sh ${SOURCES[0]} ${SOURCES[1]}')
-
-
-if env.Bit('linux'):
- env.Prepend(
- CPPPATH = [
- '$LIBEVENT_DIR/linux/',
- ],
- )
-
-env.Prepend(
- CPPPATH = [
- '$LIBEVENT_DIR',
- '$LIBEVENT_DIR/compat/',
- ],
-)
-
-input_files = [
- 'buffer.c',
- 'evbuffer.c',
- 'evdns.c',
- 'event.c',
- 'event_tagging.c',
- 'evrpc.c',
- 'evutil.c',
- 'http.c',
- 'log.c',
- 'poll.c',
- 'select.c',
- 'signal.c',
- 'strlcpy.c',
-]
-
-if env.Bit('linux'):
- input_files.extend([
- 'epoll.c',
- 'epoll_sub.c',
- ])
-
-if env.Bit('mac'):
- input_files.extend([
- 'kqueue.c',
- ])
-
-
-env.ChromeLibrary('event', input_files)
diff --git a/third_party/libevent/using_libevent.scons b/third_party/libevent/using_libevent.scons
deleted file mode 100644
index 958c653..0000000
--- a/third_party/libevent/using_libevent.scons
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-__doc__ = """
-Settings for other components using the event library.
-"""
-
-Import("env")
-
-env.Append(
- LIBS = [
- 'event',
- ],
-)